vimwiki/tech/algorithms.wiki

21 lines
349 B
Plaintext
Raw Normal View History

2021-09-22 17:23:25 +00:00
= Algorithms and Data structures =
Different ways to store and operate on data, with differing efficiency
== Sequential Data Structures ==
* [[array|Array]]
* [[vector|Vector]]
* [[linked_list|Linked List]]
* [[stack|Stack]]
* [[queue|Queue]]
== Non sequential Data Structures ==
* [[binary_tree|Binary Tree]]
* [[graph|Graph]]
[[../index]]