Anyone know any program where I can define an input collecion and I can visualize the sorting algorithm (bubble, quick, shell, etc) step by step
Thus some
1th iteration result: [3, 5, 7, 1, 8, 9]
2th iteration result: [3, 5, 1, 7, 8, 9]
3th iteration result: [3, 1, 5, 7, 8, 9]
4th iteration result: [1, 3, 5, 7, 8, 9]
5th iteration result: [1, 3, 5, 7, 8, 9]
Final result: [1, 3, 5, 7, 8, 9]