摘要: #1.代码段1:冒泡排序 ##1.1. void BubbleSort(struct Node * head) //1 { //2 struct Node * p, * q, * tail; //3 tail = NULL; //4 while((head->next->next) != tail) 阅读全文
posted @ 2019-03-25 19:56 适野 阅读(76) 评论(0) 推荐(0) 编辑