https://zh.wikipedia.org/wiki/数据结构术语列表

https://en.wikipedia.org/wiki/List_of_data_structures





Some properties of abstract data types:

Structure Order Unique
List yes no
Associative array no yes
Set no yes
Stack yes no
Multimap no no
Multiset (bag) no no
Queue yes no

Order means the insertion sequence counts. Unique means that duplicate elements are not allowed, based on some inbuilt or, alternatively, user-defined rule for comparing elements.


A data structure is said to be linear if its elements form a sequence.








In these data structures each tree node compares a bit slice of key values.



These are data structures used for space partitioning or binary space partitioning.




Many graph-based data structures are used in computer science and related fields:

 

 



















 

相关文章:

  • 2021-09-25
  • 2021-10-30
  • 2021-06-10
  • 2021-08-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-23
  • 2021-09-24
  • 2021-10-20
  • 2021-07-01
  • 2021-05-03
  • 2021-12-28
  • 2021-08-02
相关资源
相似解决方案