DataStructures / Data structures Interview questions
Is sorting possible with delete operation in data structure?
Sorting is not possible in Deletion. Using insertion we can perform insertion sort, using selection we can perform selection sort, using exchange we can perform the bubble sort. But no sorting method can be done just using deletion.
More Related questions...