[LeetCode] 系统刷题8_Data Structure

Posted johnsonxiong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 系统刷题8_Data Structure相关的知识,希望对你有一定的参考价值。

Linear data structure

  • Queue          used for BFS most of time
    • O(1) for push
    • O(1) for Pop
    • O(1) for Top
  • Stack
    • O(1) for push
    • O(1) for pop
    • O(1) for top

    [LeetCode] 155. Min Stack_Easy tag: stack

    [LeetCode] 232. Implement Queue using Stacks_Easy tag: stack

    

  • Hash

Tree data structure

  • Heap

以上是关于[LeetCode] 系统刷题8_Data Structure的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 系统刷题6_Linked List

[LeetCode] 系统刷题5_Dynamic Programming

leetcode刷题二十八

LeetCode--String刷题总结

[LeetCode] 系统刷题1_代码风格及边界

leetcode刷题十二