notes/code_practice/DataStructure at master · superfreeeee/notes · GitHub
Skip to content

Latest commit

 

History

History

Folders and files

readme.md

Data Structure 數據結構實現

列表

  • ArrayList 線性列表(數組實現)
  • LinkedList 雙向鏈表
  • Stack 棧(鏈表實現、數組實現)
  • Queue 隊列(鏈表實現、數組實現)

  • BinarySearchTree 二叉查找樹
  • AVLTree 帶平衡條件的二叉查找樹