單鏈表排序

前言: 最近總結了一下針對只有頭結點的單鏈表進行排序的幾個簡單的方法。html 交換節點:插入排序,冒泡排序,簡單選擇排序 交換數據:快速排序node 初始化: #include <stdio.h> #include <stdlib.h> #include <stdbool.h> //節點結構 struct node { int val; struct node * next;
相關文章
相關標籤/搜索