题目描述
对一个单链表原地(in-place)排序。即直接对链表结点排序。返回排序后链表的头结点。
链表结点的定义为(请不要在代码中再次定义该结构):
C/C++struct ListNode {
int val;
ListNode *next;
}
渣做法!N^2
ListNode* insert(ListNode* head, ListNode* item) { if (item == NULL) return head; if (head == NULL) { item->next = NULL; return item; } if (item->val < head->val) { item->next = head; return item;} ListNode* prev = head, *cur = head->next; while (cur != NULL) { if (cur->val < item->val) prev = cur, cur = cur->next; else { prev->next = item; item->next = cur; return head; } } if (cur == NULL) { prev->next = item; item->next = NULL; } return head; } ListNode* sortLinkList(ListNode *head) { if (!head) return head; ListNode *cur = head, *newhead = NULL, *next; while (cur != NULL) { next = cur->next; newhead = insert(newhead, cur); cur = next; } return newhead; }
merge sort
ListNode* merge(ListNode* a, ListNode* b) { if (a == NULL || b == NULL) return a == NULL ? b : a; ListNode* head, *cur; if (a->val < b->val) head = a, a = a->next; else head = b, b = b->next; head->next = NULL; cur = head; while (a != NULL && b != NULL) { if (a->val < b->val) cur->next = a, cur = cur->next, a = a->next; else cur->next = b, cur = cur->next, b = b->next; } if (a != NULL) cur->next = a; else if (b != NULL) cur->next = b; else cur->next = NULL; return head; } ListNode* mergeSort(ListNode* start, int len) { if (len <= 0) return NULL; if (len == 1) return start; int mid = len / 2, t; ListNode *midnode = start; t = mid; while (t-- > 1) midnode = midnode->next; ListNode *start2 = midnode->next; midnode->next = NULL; return merge(mergeSort(start, mid), mergeSort(start2, len - mid)); } ListNode* sortLinkList(ListNode *head) { ListNode* cur = head; int n = 0; while (cur != NULL) n++, cur = cur->next; return mergeSort(head, n); }
相关推荐
链表学习记录:new_stumanager.c 学生信息管理系统list_sort.c list_sort.h:双向循环内核链表冒泡排序,节点位置交换。list_sort.c list_sort.h:单向内核链表冒泡排序,节点位置交换。sort_arr:数组冒泡排序
void sortList(Node* head) { if (head == nullptr || head->next == nullptr) return; Node* sorted = nullptr; while (head != nullptr) { Node* current = head; head = head->next; current->next = ...
`node`为`struct list`的别名,而`link`则是`node`类型的指针别名,这使得在后续的函数声明和调用中可以更加简洁地使用这些类型。 ### 3. 链表的基本操作 #### 创建链表 ```c link create_list(int array[], int ...
SelectSort(list); // 修改这里,传入数组名 cout 已排序字符串:" << list ; return 0; } void SelectSort(char slist[]) { // 修改这里,参数类型改为char * int i, j, k; char temp; for (i = 0; i ; i++)...
public static Link FlattenTwoLevelList(Link list) { Link dummy = new Link(null, ""); Link tail = dummy; while (list != null) { if (list.Next != null) { tail.Next = list.Next; tail = tail.Next...
- `ln`:创建软链接或硬链接,`ln -s originalfile linkfile` 创建软链接。 - `mkdir`:创建新目录。 - `mv`:移动或重命名文件,`mv filename targetdirectory`。 - `rm`:删除文件,`rm -r dirname` 删除目录...
2. **定义类型别名**:使用 `typedef` 关键字为 `struct list` 和指向它的指针定义了别名 `node` 和 `link`。 3. **主函数逻辑**: - 分配内存空间给链表头结点 `head` 并将其初始化。 - 循环读取用户输入的五个...
- `[downlist:link]`、`[downlist:title len=50]`、`[downlist:date style=yy-m-d]`、`[downlist:visits]`:用于下载列表页,输出下载链接、标题、日期和访问量。 通过这些ASPCMS标签,开发者可以灵活地构建和定制...
<router-link :to="{ path: `/users/${userId}`, query: { sort: 'name' } }">查看详情</router-link> ``` ### 接收Query参数 在目标组件中,我们可以使用`this.$route.query`来访问这些查询参数: ```js export ...
11. **插入链表排序(Insertion Link List Sort)** 在链表结构中,插入排序的实现稍有不同,但基本思想相同,即找到新元素的合适位置并插入。链表操作的时间复杂度一般比数组慢。 12. **二路归并链表排序(Two-Way ...
https://www.mdpi.com/search?sort=article_citedby&page_no=0&page_count=50&year_from=1996&year_to=2020&journal=cells&view=default Page : Demo : # encoding: utf-8 @author: lanxiaofang @contact: fang...
其中 `link` 类用于表示链表中的单个节点,而 `LList` 类则是基于 `std::list` 的自定义链表实现。 ##### 2.1 `link` 类分析 `link` 类定义了链表的基本单元——节点。每个节点包含一个数据成员 `element` 和一个...
the Extensions List, Excluded Extensions List, Subject contains string..., From string, and To string, and you can easily select a string again from a Combo-Box. * Version 2.47 o Added option to ...
sortList: [[0, 1], [1, 0]] // 先按第一列降序,再按第二列升序 }); ``` ### 4. 处理复杂数据 对于包含复杂数据的表格,如带有HTML标签或需要特殊处理的单元格,`tablesorter`提供了`textExtraction`选项。你...
1. **链表**: 可能有`link_list.h`,包含链表的基本操作,如创建、插入、删除、遍历等。 2. **栈**: 如`stack.h`,提供栈的初始化、压入、弹出、判断栈空等功能。 3. **队列**: 如`queue.h`,可能包括循环队列和链式...
sort: true, // sorting inside list delay: 0, // time in milliseconds to define when the sorting should start touchStartThreshold: 0, // px, how many pixels the point should move before cancelling a...
ViewBag.CurrentSort = sortOrder; ViewBag.NameSortParm = String.IsNullOrEmpty(sortOrder) ? "name_desc" : ""; ViewBag.DateSortParm = sortOrder == "Date" ? "date_desc" : "Date"; if (searchString != ...
在这一层次,主要是学习如何使用STL提供的现成组件,例如容器如vector、list等,以及算法如sort、search等。这部分重点在于理解STL的基本用法和功能特性,能够直接在项目中使用这些工具来提高编程效率。 #### 2. **...
8.Added: the 'Organize' menu onto the main menu, as many users can't find the 'Sort child items' utility, which is also located in the 'Outline' action menu. 9.Added: Alt-Drag to create symbolic links...