vimwiki/tech/algorithms.wiki

67 lines
1.3 KiB
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]]
2021-09-23 03:33:54 +00:00
* [[skip_list|Skip list]]
* [[hash_table|Hash Table]]
2021-09-22 17:23:25 +00:00
== Non sequential Data Structures ==
* [[binary_tree|Binary Tree]]
* [[graph|Graph]]
2021-09-23 03:33:54 +00:00
* [[b_tree|B-Tree]]
* [[red_black_tree|Red Black Tree]]
* [[splay_tree|Splay Tree]]
* [[avl_tree|AVL Tree]]
* [[kd_tree|KD Tree]]
2022-02-02 20:00:01 +00:00
* [[Heap]]
2021-11-06 19:15:01 +00:00
- [[Fibonacci_heap]]
2021-09-23 03:33:54 +00:00
2022-02-02 20:00:01 +00:00
== Probabilistic Data Structures ==
* [[Bloom_filter]]
2021-11-05 19:45:01 +00:00
== Common Algorithms ==
2021-11-06 19:00:01 +00:00
=== Graph and Tree ===
2021-11-05 19:45:01 +00:00
* [[BFS]]
* [[DFS]]
2021-11-06 19:00:01 +00:00
* [[Dijkstra]]
2021-11-05 19:45:01 +00:00
2021-09-23 03:33:54 +00:00
== Sorting ==
* [[quicksort|Quicksort]]
* [[mergesort|Mergesort]]
* [[heapsort|Heapsort]]
* [[radix|Radix]]
* [[bucket|Bucket]]
* [[counting|Counting]]
2021-09-22 17:23:25 +00:00
2021-09-23 17:54:24 +00:00
== Paradigms ==
* [[simple_recurison|Simple Recursion]]
* [[divide_and_conquer|Divide and Conquer]]
* [[dynamic_programming|Dynamic Programming]]
* [[greedy_algorithm|Greedy Algorithms]]
* [[brute_force|Brute Force]]
* [[randomized_algorithm|Randomized Algorithms]]
2021-10-11 03:22:53 +00:00
* [[genetic|Genetic Algorithms]]
* [[swarm|Swarm Inteligence]]
* [[neural|Neural Networks]]
== Common operations ==
* [[gcd]] - Find the GCD of two numbers
2021-12-15 20:45:01 +00:00
* [[modular_exponentiation|Modular Exponentiation]] - Solve a^b mod n
2021-09-23 17:54:24 +00:00
[[index]]