ES 102 - Introduction To Computing Lab Assignment - 5: October 9, 2015
This lab assignment asks students to design algorithms for common sorting methods like selection sort and bubble sort, as well as algorithms to merge sorted lists, including merging two sorted lists into one and merging three sorted lists into a single sorted list while removing duplicate elements during a modified selection sort.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
61 views
ES 102 - Introduction To Computing Lab Assignment - 5: October 9, 2015
This lab assignment asks students to design algorithms for common sorting methods like selection sort and bubble sort, as well as algorithms to merge sorted lists, including merging two sorted lists into one and merging three sorted lists into a single sorted list while removing duplicate elements during a modified selection sort.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1
ES 102 - Introduction to Computing
Lab Assignment - 5
October 9, 2015
1. Design algorithms to implement selection sort, bubble sort, insertion
sort on a given unsorted list. 2. Design an algorithm to merge 2 sorted lists using only 2 lists. Assume that the size of the sorted lists are known. 3. Design a modified selection sort algorithm which automatically removes duplicates during the sorting process. 4. Design an algorithm to merge 3 sorted lists into a sorted list.