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题想请问如何用堆叠和伫列计算??
请各位指点迷津 感恩!!