美文网首页
ZXAlgorithm - C6 LinkedList and

ZXAlgorithm - C6 LinkedList and

作者: 左心Chris | 来源:发表于2019-11-05 19:27 被阅读0次

Outline
LinkedList:
Dummy Node
High Frequency
Array:
Sorted Array
Subarray

0 Template

  • Dummy Node
    When the structure changes, use dummy node
    Dummy, pre, curt
    Need dummy.next
    Dummy = new; dummy.next = head; head = dummy; return dummy.next; give the start of the linked list
  • Worth to do questions

1 LinkedList

3 Array

相关文章

网友评论

      本文标题:ZXAlgorithm - C6 LinkedList and

      本文链接:https://www.haomeiwen.com/subject/bztmyctx.html