InterviewSolution
Saved Bookmarks
| 1. |
Write the resultant array after 3 pass of Bubble sort: [1]{ 34, 76, 12, 89, 22, 66, 3} |
|
Answer» First pass : {34, 12, 76, 22, 66, 3, 89} SECOND pass : {12, 34, 22, 66, 3, 76, 89} Third pass : {12, 22, 34, 3, 66, 76, 89} |
|