Wednesday, July 3, 2024
HomeLanguagesPythonPython | Sort all sublists in given list of strings

Python | Sort all sublists in given list of strings

Given a list of lists, the task is to sort each sublist in the given list of strings. 

Example: 

Input:
lst = [['Machine', 'London', 'Canada', 'France'],
       ['Spain', 'Munich'],
       ['Australia', 'Mandi']]

Output:
flist = [['Canada', 'France', 'London', 'Machine'],
         ['Munich', 'Spain'],
         ['Australia', 'Mandi']]

There are multiple ways to sort each list in alphabetical order. 

Method #1 : Using map 

Python3




# Python code  to sort all sublists
# in given list of strings
 
# List initialization
Input = [['Machine', 'London', 'Canada', 'France', 'Lanka'],
         ['Spain', 'Munich'],
         ['Australia', 'Mandi']]
 
# Using map for sorting
Output = list(map(sorted, Input))
 
# Printing output
print(Output)


Output:

[[‘Canada’, ‘France’, ‘Lanka’, ‘London’, ‘Machine’], [‘Munich’, ‘Spain’], [‘Australia’, ‘Mandi’]]

Time Complexity: O(n), where n is the number of elements in the list “test_list”.
Auxiliary Space: O(n), where n is the number of elements in the list “test_list”.

  Method #2 : Using lambda and sorted 

Python3




# Python code  to sort all sublists
# in given list of strings
 
# List initialization
Input = [['Machine', 'London', 'Canada', 'France', 'Lanka'],
         ['Spain', 'Munich'],
         ['Australia', 'Mandi']]
 
# using lambda and sorted
Output = [sorted(x, key = lambda x:x[0]) for x in Input]
 
# Printing output
print(Output)


Output:

[[‘Canada’, ‘France’, ‘London’, ‘Lanka’, ‘Machine’], [‘Munich’, ‘Spain’], [‘Australia’, ‘Mandi’]]

Time Complexity: O(nlogn)
Auxiliary Space: O(1)

  Method #3 : Using iteration and sort 

Python3




# Python code  to sort all sublists
# in given list of strings
 
# List initialization
Input = [['Machine', 'London', 'Canada', 'France', 'Lanka'],
         ['Spain', 'Munich'],
         ['Australia', 'Mandi']]
 
# sorting sublist
for sublist in Input:
    sublist.sort()
 
# Printing output
print(Input)


Output:

[[‘Canada’, ‘France’, ‘Lanka’, ‘London’, ‘Machine’], [‘Munich’, ‘Spain’], [‘Australia’, ‘Mandi’]]

  Method #4 : Using simple list comprehension

Another approach to sort the sublists in a list of strings is to use the built-in sorted function and a list comprehension. This method involves iterating over each sublist in the list and sorting it using the sorted function, then returning the sorted sublist in a new list using a list comprehension. Here is an example of how this can be done:

Python3




# Initialize the list of lists
lst = [['Machine', 'London', 'Canada', 'France', 'Lanka'],
       ['Spain', 'Munich'],
       ['Australia', 'Mandi']]
 
# Use a list comprehension to sort each sublist in the list
sorted_lst = [sorted(sublist) for sublist in lst]
 
# Print the sorted list
print(sorted_lst)
#This code is contributed by Edula Vinay Kumar Reddy


Output

[['Canada', 'France', 'Lanka', 'London', 'Machine'], ['Munich', 'Spain'], ['Australia', 'Mandi']]

The time complexity of this approach is O(nlog(n)), where n is the total number of elements in the list, because the sorted function uses a sorting algorithm with a time complexity of O(nlog(n)). The auxiliary space is O(n) because a new list is created to hold the sorted sublists.

Shaida Kate Naidoo
am passionate about learning the latest technologies available to developers in either a Front End or Back End capacity. I enjoy creating applications that are well designed and responsive, in addition to being user friendly. I thrive in fast paced environments. With a diverse educational and work experience background, I excel at collaborating with teams both local and international. A versatile developer with interests in Software Development and Software Engineering. I consider myself to be adaptable and a self motivated learner. I am interested in new programming technologies, and continuous self improvement.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments