Open In App

Python – Cross Pattern Pairs in List

Given two lists, pair them diagonally, in cross pattern [works for even and equi-length lists].

Input : test_list1 = [4, 5, 6, 2], test_list2 = [9, 1, 4, 7] 
Output : [(4, 1), (5, 9), (6, 7), (2, 4)] 
Explanation : Crosslinked diagonally, 4->1, 5->9.



Input : test_list1 = [4, 5], test_list2 = [9, 1] 
Output : [(4, 1), (5, 9)] 
Explanation : Crosslinked diagonally, 4->1, 5->9. 

Method #1: Using loop



In this, we iterate through list and test for even or odd index, in case of even index, we pair with next element of other list, or else we pair with previous element of other list. This way cross pattern tuples are formed.




# Python3 code to demonstrate working of
# Cross Pattern Pairs in List
# Using loop
 
 
# function to generate cross pattern pairs
def crossPair(test_list1, test_list2):
 
    # lengths of both lists should be equal
    if len(test_list1) != len(test_list2):
        return -1
 
    res = []
    for idx in range(len(test_list1)):
 
        # checking for conditions
        if idx % 2 == 0:
            res.append((test_list1[idx], test_list2[idx + 1]))
        else:
            res.append((test_list1[idx], test_list2[idx - 1]))
    return res
 
 
# initializing lists
input_list1 = [4, 5, 6, 2, 8, 9]
input_list2 = [9, 1, 4, 7, 9, 2]
 
# printing original lists
print("The original list 1 is : " + str(input_list1))
print("The original list 2 is : " + str(input_list2))
 
# printing result
print("Paired List elements : ", crossPair(input_list1, input_list2))

Output:

The original list 1 is : [4, 5, 6, 2, 8, 9] The original list 2 is : [9, 1, 4, 7, 9, 2] Paired List elements :  [(4, 1), (5, 9), (6, 7), (2, 4), (8, 2), (9, 9)]

Time complexity: O(n), where n is the length of the input lists.
Auxiliary space: O(n), where n is the length of the input lists.

Method #2: Using list comprehension

Uses similar approach as above method, difference being list comprehension is used as a single linear alternative to solve this problem.




# Python3 code to demonstrate working of
# Cross Pattern Pairs in List
# Using list comprehension
 
 
# function to generate cross pattern pairs
def crossPair(test_list1, test_list2):
 
    # lengths of both lists should be equal
    if len(test_list1) != len(test_list2):
        return -1
 
    # list comprehension used as one liner alternative
    res = [(test_list1[idx], test_list2[idx + 1]) if idx % 2 ==
           0 else (test_list1[idx], test_list2[idx - 1]) for idx in range(len(test_list1))]
    return res
 
 
# initializing lists
input_list1 = [4, 5, 6, 2, 8, 9]
input_list2 = [9, 1, 4, 7, 9, 2]
 
# printing original lists
print("The original list 1 is : " + str(input_list1))
print("The original list 2 is : " + str(input_list2))
 
# printing result
print("Paired List elements : ", crossPair(input_list1, input_list2))

Output:

The original list 1 is : [4, 5, 6, 2, 8, 9] The original list 2 is : [9, 1, 4, 7, 9, 2] Paired List elements :  [(4, 1), (5, 9), (6, 7), (2, 4), (8, 2), (9, 9)]

Method#3: Using Recursive method.




# Python3 code to demonstrate working of
# Cross Pattern Pairs in List
# Using recursion function
def crossPair(test_list1, test_list2, idx=0, res=[]):
    if idx == len(test_list1):
        return res
 
    if idx % 2 == 0:
        res.append((test_list1[idx], test_list2[idx + 1]))
    else:
        res.append((test_list1[idx], test_list2[idx - 1]))
    return crossPair(test_list1, test_list2, idx + 1, res)
 
# initializing lists
input_list1 = [4, 5, 6, 2, 8, 9]
input_list2 = [9, 1, 4, 7, 9, 2]
 
# printing original lists
print("The original list 1 is : " + str(input_list1))
print("The original list 2 is : " + str(input_list2))
 
# printing result
print("Paired List elements : ", crossPair(input_list1, input_list2))
#this code contributed by tvsk

Output
The original list 1 is : [4, 5, 6, 2, 8, 9]
The original list 2 is : [9, 1, 4, 7, 9, 2]
Paired List elements :  [(4, 1), (5, 9), (6, 7), (2, 4), (8, 2), (9, 9)]

Time Complexity: O(n)
Auxiliary Space: O(n)

Method #4: Using numpy():

Algorithm:




import numpy as np
 
def crossPair(test_list1, test_list2):
    return [(test_list1[i], test_list2[i-1] if i%2 else test_list2[i+1]) for i in np.arange(len(test_list1))]
 
# initializing lists
input_list1 = [4, 5, 6, 2, 8, 9]
input_list2 = [9, 1, 4, 7, 9, 2]
 
# printing original lists
print("The original list 1 is : " + str(input_list1))
print("The original list 2 is : " + str(input_list2))
 
# printing result
print("Paired List elements : ", crossPair(input_list1, input_list2))
#This code is contributed by Jyothi pinjala

Output:

The original list 1 is : [4, 5, 6, 2, 8, 9]
The original list 2 is : [9, 1, 4, 7, 9, 2]
Paired List elements :  [(4, 1), (5, 9), (6, 7), (2, 4), (8, 2), (9, 9)]

Time Complexity: O(n), where n is the length of the input list. This is because the algorithm iterates through each element of the input list once.
Space Complexity: O(n), where n is the length of the input list. This is because the algorithm creates a new list to store the paired elements, which will be the same length as the input list.

Method 5: Using the map function and a lambda function

Step-by-step approach:




def crossPair(test_list1, test_list2):
    pairs = list(map(lambda x, y: (x, test_list2[test_list1.index(x)+1]) if test_list1.index(x) % 2 == 0 else (x, test_list2[test_list1.index(x)-1]), test_list1, test_list2))
    return pairs
     
# initializing lists
input_list1 = [4, 5, 6, 2, 8, 9]
input_list2 = [9, 1, 4, 7, 9, 2]
 
# printing original lists
print("The original list 1 is : " + str(input_list1))
print("The original list 2 is : " + str(input_list2))
 
# printing result
print("Paired List elements : ", crossPair(input_list1, input_list2))

Output
The original list 1 is : [4, 5, 6, 2, 8, 9]
The original list 2 is : [9, 1, 4, 7, 9, 2]
Paired List elements :  [(4, 1), (5, 9), (6, 7), (2, 4), (8, 2), (9, 9)]

Time complexity: O(n), where n is the length of the input lists, as it requires iterating through both lists. 
Auxiliary space: O(n) to store the list of paired elements.


Article Tags :