1.A list contains the following elements: 2 13 7 26 43 23 91 52.
What is the value of the 6th element in the list after three more passes
of the insertion sort?
(a) 2 (b) 23 (c) 26 (d) 52 (e) none of the above
2.Show the value of the varible y in the following code.
Stack(S1);
Push(S1,5);
Push(S1,3);
Push(S1,2);
Pop(S1,x);
Pop(S1,y);
Push(S1,6);
(a) 2 (b) 3 (c) 5 (d) 6 (e)none of the adove
第一題想請問這是要用"氣泡" 還是"選擇"排序法?
然後 題目中說的 在第6元素中插入排序 是什麼意思??
第2題想請問如何用堆疊和佇列計算??
請各位指點迷津 感恩!!