摘要: 链表逆序: https://blog.csdn.net/ljyljyok/article/details/77996029 阅读全文
posted @ 2019-07-11 21:09 FreyLuo 阅读(172) 评论(0) 推荐(0)
摘要: //经典冒泡排序void sort_bubble(int* a,int len){ int i, j; int temp; for (i = 0; i < len - 1; i++) { for (j = 0; j < len - 1 - i; j++) { if (a[j] > a[j + 1]) 阅读全文
posted @ 2019-07-11 17:08 FreyLuo 阅读(148) 评论(0) 推荐(0)