码迷,mamicode.com
首页 >  
搜索关键字:linked_list    ( 3784个结果
leetcode-----19. 删除链表的倒数第N个节点
链接:https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/ 代码 /** * Definition for singly-linked list. * public class ListNode { * int val; ...
分类:其他好文   时间:2020-06-13 21:11:17    阅读次数:66
1074 Reversing Linked List (25分)(链表区间反转)
1074 Reversing Linked List (25分) Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For ex ...
分类:其他好文   时间:2020-06-13 00:48:49    阅读次数:54
getIntersectionNode
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; * } * } * ...
分类:其他好文   时间:2020-06-07 12:54:05    阅读次数:68
第九周软件工程学习知识总结(《数据结构与算法》)
一.动态数组的有序线性表 1.头文件: 2.c档 3.主程序 4.运行结果 二.线性表的链结表表示法 1.线性表可以使用固定数组和变动数组来实现;另外,线性表也可使用链结表来表示。 链结表 (linked list) 就是用「链」连接在一起的多个节点。 节点 (node):包含两个部分数据 (dat ...
分类:编程语言   时间:2020-05-31 21:37:01    阅读次数:75
图解数据结构——链表
链表(Linked list)是一种常见的基础数据结构,是一种线性表,但是并不会按线性的顺序存储数据,而是在每一个节点里存到下一个节点的指针(Pointer)。——维基百科 链表 如果将链表简单抽象成图片,大概长这样。 是不是跟链子很像?(好吧,不是很像)但是你细品,应该还是能发现链表跟你认识的某位 ...
分类:其他好文   时间:2020-05-31 18:13:58    阅读次数:158
leetcode 21. 合并两个有序链表
将两个升序链表合并为一个新的升序链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。 示例: 输入:1->2->4, 1->3->4 输出:1->1->2->3->4->4 解题思路: /** * Definition for singly-linked list. * struct Lis ...
分类:其他好文   时间:2020-05-31 13:23:10    阅读次数:68
LeetCode19- Remove Nth Node From End of List-Medium
删除链表中倒数第n个结点 题目:LeetCode19 Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked list: 1->2->3->4- ...
分类:其他好文   时间:2020-05-29 09:26:32    阅读次数:50
2. 两数相加(链表的使用)
题目描述 leetcode - 2:https://leetcode-cn.com/problems/add-two-numbers/ 解题关键 C++ 链表 数据结构的定义和遍历 代码 /** * Definition for singly-linked list. * struct ListNo ...
分类:其他好文   时间:2020-05-29 09:15:52    阅读次数:73
lc 两数相加
链接:https://leetcode-cn.com/problems/add-two-numbers/ 代码: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * L ...
分类:其他好文   时间:2020-05-25 00:15:00    阅读次数:65
lc 排序链表
链接:https://leetcode-cn.com/problems/sort-list/ 代码: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNod ...
分类:编程语言   时间:2020-05-24 23:59:47    阅读次数:102
3784条   上一页 1 ... 7 8 9 10 11 ... 379 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!