paradigms
dz / leetcode / paradigmsSubgraphs
Node Tree
- algorithmic_paradigm
- array_string
- backtracking
-
binary_search
- leetcode/problems/278_first_bad_version
- leetcode/problems/34_first_last_sorted_array
- leetcode/problems/704_binary_search
- leetcode/problems/875_koko_eating_bananas
- leetcode/references/binary_search
- leetcode/references/binary_search_java
- leetcode/references/binary_search_leetcode
- leetcode/references/opionated_guide_binary_search
- bit_manipulation
- breadth_first_search
- depth_first_search
- dynamic_programming
- greedy
- prefix_sum
- sliding_window
- two_pointer
Nodes
dynamic_programming | |
content | Dynamic Programming |
children | leetcode/references/optimal_substructure (optimal substructure key piece in solving dynamic programming problems), leetcode/problems/322_coin_change, leetcode/references/dynamic_programming, leetcode/references/bottom_up_top_down (Dynamic programming can come in top-down or bottoms-up approaches) |
algorithmic_paradigm | |
content | Algorithmic Paradigms |
children | leetcode/references/algorithmic_paradigm |
depth_first_search | |
content | Depth-First Search |
children | leetcode/problems/200_number_of_islands, leetcode/references/depth_first_search |
breadth_first_search | |
content | Breadth-First Search |
children | leetcode/references/breadth_first_search, leetcode/problems/994_rotting_oranges |
parents | leetcode/problems/200_number_of_islands |
backtracking | |
content | Backtracking |
children | leetcode/problems/39_combination_sum, leetcode/references/backtracking |
greedy | |
content | Greedy |
children | leetcode/problems/121_best_time_to_sell_and_buy_stock (I'm pretty sure this is a greedy algorithm? ("locally optimal choices")), leetcode/references/greedy_algorithm |
prefix_sum | |
content | Prefix Sum |
children | leetcode/problems/724_pivot_index, leetcode/problems/1732_find_highest_altitude |