Skip to content

Latest commit

 

History

History

Exp_13

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Programs and Output for Experiment 13.

quick_sort.c - Implementation of Quick sort using non-recursive algorithm.

Enter the Size of the Array : 5
Enter the Elements of the Array : 40
70
20
50
10
10 20 40 50 70 

merge_sort.c - Implementation of Merge sort using non-recursive algorithm.

Enter the number of elements : 5
Enter element 1 : 20
Enter element 2 : 60
Enter element 3 : 40
Enter element 4 : 10
Enter element 5 : 80
Sorted list is :
10 20 40 60 80