随笔分类 - Leetcode | LinkedList
摘要:Problem I翻转链表程序(简洁版)非递归ListNode reverseList(ListNode head) { ListNode pre = null; ListNode cur = head; while (cur != null ) { ListNode next = cur.ne...
阅读全文
摘要:问题描述Sort a linked list using insertion sort.解决思路1.设置first和last指针;2.插入分三种情况。程序public class Solution { public ListNode insertionSortList(ListNode hea...
阅读全文

浙公网安备 33010602011771号