码迷,mamicode.com
首页 >  
搜索关键字:linked_list    ( 3784个结果
1290. Convert Binary Number in a Linked List to Integer
package LeetCode_1290 /** * 1290. Convert Binary Number in a Linked List to Integer * https://leetcode.com/problems/convert-binary-number-in-a-linked- ...
分类:其他好文   时间:2020-04-29 00:53:52    阅读次数:52
Leetcode swap-nodes-in-pairs(链表 交换相邻节点)
题目描述 将给定的链表中每两个相邻的节点交换一次,返回链表的头指针例如,给出1->2->3->4,你应该返回链表2->1->4->3。你给出的算法只能使用常量级的空间。你不能修改列表中的值,只能修改节点本身。 Given a linked list, swap every two adjacent ...
分类:其他好文   时间:2020-04-29 00:52:16    阅读次数:76
[Algo] 42. Partition Linked List
Given a linked list and a target value T, partition it such that all nodes less than T are listed before the nodes larger than or equal to target valu ...
分类:其他好文   时间:2020-04-26 09:21:42    阅读次数:55
[Algo] 306. Check If Linked List Is Palindrome
Given a linked list, check whether it is a palindrome. Examples: Input: 1 -> 2 -> 3 -> 2 -> 1 -> null output: true. Input: 1 -> 2 -> 3 -> null output: ...
分类:其他好文   时间:2020-04-26 09:15:19    阅读次数:66
奇偶链表
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12762546.html 奇偶链表(40) 题目链接:https://leetcode-cn.com/problems/odd-even-linked-list/ 给定一个单链表,把所有的奇数节点和偶数节点分 ...
分类:其他好文   时间:2020-04-23 18:54:27    阅读次数:67
LeetCode每周记录-5
将两串链表合并成一串(保持有序)。题目很简单,思路是用两个指针分别遍历两串链表,同时比较节点值,取小的那一边并将指针向右移动。代码: # Definition for singly-linked list. # class ListNode(object): # def __init__(self, ...
分类:其他好文   时间:2020-04-18 21:23:24    阅读次数:84
Leetcod-反转链表
206.逆转链表Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL方法一:迭代 # Definition for singly-linked list. # class ListNode: # def __init__(self, x): # ...
分类:其他好文   时间:2020-04-18 11:57:28    阅读次数:87
leetcode-面试题22:链表中倒数第二个节点
题目描述: java:快慢指针: /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ ...
分类:其他好文   时间:2020-04-16 00:38:08    阅读次数:113
[LeetCode] 445. 两数相加 II
自己想的太复杂了。。。。。 /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ cla ...
分类:其他好文   时间:2020-04-15 00:42:52    阅读次数:53
234. 回文链表
1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : val(x), next(NULL) {} 7 * }; ...
分类:其他好文   时间:2020-04-12 19:00:22    阅读次数:74
3784条   上一页 1 ... 11 12 13 14 15 ... 379 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!