设计链表的实现。您可以选择使用单链表或双链表。单链表中的节点应该具有两个属性:val 和 next。val 是当前节点的值,next 是指向下一个节点的指针/引用。如果要使用双向链表,则还需要一个属性 prev 以指示链表中的上一个节点。假设链表中的所有节点都是 0-index 的。

在链表类中实现这些功能:

  • get(index):获取链表中第 index 个节点的值。如果索引无效,则返回-1。
  • addAtHead(val):在链表的第一个元素之前添加一个值为 val 的节点。插入后,新节点将成为链表的第一个节点。
  • addAtTail(val):将值为 val 的节点追加到链表的最后一个元素。
  • addAtIndex(index,val):在链表中的第 index 个节点之前添加值为 val  的节点。如果 index 等于链表的长度,则该节点将附加到链表的末尾。如果 index 大于链表长度,则不会插入节点。
  • deleteAtIndex(index):如果索引 index 有效,则删除链表中的第 index 个节点。

示例:

MyLinkedList linkedList = new MyLinkedList(); linkedList.addAtHead(1); linkedList.addAtTail(3); linkedList.addAtIndex(1,2); //链表变为1-> 2-> 3 linkedList.get(1); //返回2 linkedList.deleteAtIndex(1); //现在链表是1-> 3 linkedList.get(1); //返回3

提示:

  • 所有值都在 [1, 1000] 之内。
  • 操作次数将在  [1, 1000] 之内。
  • 请不要使用内置的 LinkedList 库。
  1. struct Node
  2. {
  3. int val;
  4. Node* next;
  5. Node(int x) : val(x), next(NULL)
  6. {
  7. }
  8. };
  9. class MyLinkedList {
  10. public:
  11. Node *head;
  12. int cnt;
  13. MyLinkedList() {
  14. head = NULL;
  15. cnt = 0;
  16. }
  17. int get(int index) {
  18. if(index < 0 || index > cnt - 1)
  19. return -1;
  20. Node* temp = head;
  21. while(index)
  22. {
  23. temp = temp ->next;
  24. index--;
  25. }
  26. return temp ->val;
  27. }
  28. void addAtHead(int val)
  29. {
  30. Node* node = new Node(val);
  31. if(cnt == 0)
  32. {
  33. head = node;
  34. }
  35. else
  36. {
  37. node ->next = head;
  38. head = node;
  39. }
  40. cnt++;
  41. }
  42. void addAtTail(int val)
  43. {
  44. Node* node = new Node(val);
  45. if(cnt == 0)
  46. {
  47. head = node;
  48. }
  49. else
  50. {
  51. Node *temp = head;
  52. while(temp ->next != NULL)
  53. {
  54. temp = temp ->next;
  55. }
  56. temp ->next = node;
  57. }
  58. cnt++;
  59. }
  60. void addAtIndex(int index, int val) {
  61. if(index < 0 || index > cnt)
  62. return;
  63. if(index == 0)
  64. {
  65. addAtHead(val);
  66. }
  67. else if(index == cnt)
  68. {
  69. addAtTail(val);
  70. }
  71. else
  72. {
  73. Node* temp = head;
  74. Node* node = new Node(val);
  75. while(index > 1)
  76. {
  77. index--;
  78. temp = temp ->next;
  79. }
  80. node ->next = temp ->next;
  81. temp ->next = node;
  82. cnt++;
  83. }
  84. }
  85. void deleteAtIndex(int index) {
  86. if(index < 0 || index >= cnt)
  87. return;
  88. Node* temp = head;
  89. if(index == cnt - 1)
  90. {
  91. while(index > 1)
  92. {
  93. index--;
  94. temp = temp ->next;
  95. }
  96. Node* clear = temp ->next;
  97. free(clear);
  98. temp ->next = NULL;
  99. }
  100. else
  101. {
  102. while(index > 1)
  103. {
  104. index--;
  105. temp = temp ->next;
  106. }
  107. Node* clear = temp ->next;
  108. Node* next = temp ->next ->next;
  109. free(clear);
  110. temp ->next = next;
  111. }
  112. cnt--;
  113. }
  114. };

Leetcode707.Design Linked List设计链表的更多相关文章

  1. 【LeetCode】Design Linked List(设计链表)

    这道题是LeetCode里的第707到题.这是在学习链表时碰见的. 题目要求: 设计链表的实现.您可以选择使用单链表或双链表.单链表中的节点应该具有两个属性:val 和 next.val 是当前节点的 ...

  2. [LeetCode] Design Linked List 设计链表

    Design your implementation of the linked list. You can choose to use the singly linked list or the d ...

  3. LeetCode 707. Design Linked List (设计链表)

    题目标签:Linked List 题目让我们自己设计一个 linked list,可以是单向和双向的.这里选的是单向,题目并不是很难,但要考虑到所有的情况,具体看code. Java Solution ...

  4. [Swift]LeetCode707. 设计链表 | Design Linked List

    Design your implementation of the linked list. You can choose to use the singly linked list or the d ...

  5. LeetCode707:设计链表 Design Linked List

    爱写bug (ID:iCodeBugs) 设计链表的实现.您可以选择使用单链表或双链表.单链表中的节点应该具有两个属性:val 和 next.val 是当前节点的值,next 是指向下一个节点的指针/ ...

  6. C#LeetCode刷题之#707-设计链表(Design Linked List)

    问题 该文章的最新版本已迁移至个人博客[比特飞],单击链接 https://www.byteflying.com/archives/4118 访问. 设计链表的实现.您可以选择使用单链表或双链表.单链 ...

  7. LeetCode707 设计链表

    设计链表的实现.您可以选择使用单链表或双链表.单链表中的节点应该具有两个属性:val 和 next.val 是当前节点的值,next 是指向下一个节点的指针/引用.如果要使用双向链表,则还需要一个属性 ...

  8. 707. Design Linked List

    1. 原始题目 Design your implementation of the linked list. You can choose to use the singly linked list ...

  9. [LeetCode] 641.Design Circular Deque 设计环形双向队列

    Design your implementation of the circular double-ended queue (deque). Your implementation should su ...

随机推荐

  1. 不同版本springboot上传文件大小设置

    参考原文:https://blog.csdn.net/awmw74520/article/details/70230591 Spring Boot 1.3.x或者之前 multipart.maxFil ...

  2. 【论文翻译】NIN层论文中英对照翻译--(Network In Network)

    [论文翻译]NIN层论文中英对照翻译--(Network In Network) [开始时间]2018.09.27 [完成时间]2018.10.03 [论文翻译]NIN层论文中英对照翻译--(Netw ...

  3. PHP SSH2 不支持 IdentityFile

    有的情况下 我们会用到 类似命令行 sftp -o IdentityFile=.ssh/identity  username@host方式 登陆, 想用php 操作, 但是 php 现在看是不支持的, ...

  4. [转]WPF命令集 Command

    在我们日常的应用程序操作中,经常要处理各种各样的命令和进行相关的事件处理,比如需要复制.粘贴文本框中的内容;上网查看网页时,可能需要返回上一网页查看相应内容;而当我们播放视频和多媒体时,我们可能要调节 ...

  5. [转]C#中的委托和事件(续)

    源码下载:http://www.tracefact.net/SourceCode/MoreDelegate.rar C#中的委托和事件(续) 引言 如果你看过了 C#中的委托和事件 一文,我想你对委托 ...

  6. JZOJ100048 【NOIP2017提高A组模拟7.14】紧急撤离

    题目 题目大意 给你一个01矩阵,每次询问从一个点是否可以走到另一个点. 每次走只能往右或者往下. 思考历程 这题啊,我想的时候真的是脑洞大开-- 首先,我一眼看下去,既然要询问是否联通,那么能不能求 ...

  7. gitlab merge request

    分支提了mr之后, 又有commit 不用重新提mr,mr中会自动更新 要保证项目下的.git目录中有hooks这个目录(如果是从github迁移到gitlab的项目, 可能没有这个目录, 导致mr不 ...

  8. 科普 | 编译 V8 源码

    2017-02-13 justjavac 象尘说 对于JavaScript程序员来说,可以瞧一瞧justjavac给大家写的科普类读物,V8引擎的分析,“也许你不懂C++”,但是你可以了解一下,总是好 ...

  9. DVWA 之low级别sql注入

    将Security level设为low,在左侧列表中选择“SQL Injection”,然后在右侧的“User ID”文本框中输入不同的数字就会显示相应的用户信息. 我们首先需要判断这里所传输的参数 ...

  10. python 为 class 添加新的属性和方法

    通过继承: >>> class Point(namedtuple('Point', ['x', 'y'])): ... __slots__ = () ... @property .. ...