摘要: #include #include bubbleSort(int *p,int length);int main(){ int a[] = {1,3,2,8,5,9,7,6,4,0}; int length = 10; int i; bubbleSort(&a,10); ... 阅读全文
posted @ 2015-11-10 16:27 ydp 阅读(160) 评论(0) 推荐(0) 编辑