Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Program to implement Recursive Merge sort algorithm in python
- Enter the elements to sorted as spaced integers : 10 9 8 7 6 5 4 3 2 1
- The list before sorting is :
- [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
- The sorted list is :
- [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Add Comment
Please, Sign In to add comment