试写出对序列的冒泡排序算法。
试写出对序列的冒泡排序算法。
【正确答案】:void BubbleSort(seqList R,int n) { int i,j,flag; for(i=l;i=i+1;j--) if(R[j].key
Top