diff --git a/en/chapter_array_and_linkedlist/array.assets/array_definition.png b/en/chapter_array_and_linkedlist/array.assets/array_definition.png index 6cb6e5804..fd29508ee 100644 Binary files a/en/chapter_array_and_linkedlist/array.assets/array_definition.png and b/en/chapter_array_and_linkedlist/array.assets/array_definition.png differ diff --git a/en/chapter_array_and_linkedlist/array.assets/array_insert_element.png b/en/chapter_array_and_linkedlist/array.assets/array_insert_element.png index b8a3bbadd..5c10ac710 100644 Binary files a/en/chapter_array_and_linkedlist/array.assets/array_insert_element.png and b/en/chapter_array_and_linkedlist/array.assets/array_insert_element.png differ diff --git a/en/chapter_array_and_linkedlist/array.assets/array_memory_location_calculation.png b/en/chapter_array_and_linkedlist/array.assets/array_memory_location_calculation.png index 4e3d20163..be1246156 100644 Binary files a/en/chapter_array_and_linkedlist/array.assets/array_memory_location_calculation.png and b/en/chapter_array_and_linkedlist/array.assets/array_memory_location_calculation.png differ diff --git a/en/chapter_array_and_linkedlist/array.assets/array_remove_element.png b/en/chapter_array_and_linkedlist/array.assets/array_remove_element.png index 33162da65..416b2a66f 100644 Binary files a/en/chapter_array_and_linkedlist/array.assets/array_remove_element.png and b/en/chapter_array_and_linkedlist/array.assets/array_remove_element.png differ diff --git a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_common_types.png b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_common_types.png index dde887ed3..3780b1508 100644 Binary files a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_common_types.png and b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_common_types.png differ diff --git a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_definition.png b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_definition.png index a125c7eed..f831715f3 100644 Binary files a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_definition.png and b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_definition.png differ diff --git a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_insert_node.png b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_insert_node.png index 4710a893b..a9a770981 100644 Binary files a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_insert_node.png and b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_insert_node.png differ diff --git a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_remove_node.png b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_remove_node.png index 16c54ec6c..3f1179aeb 100644 Binary files a/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_remove_node.png and b/en/chapter_array_and_linkedlist/linked_list.assets/linkedlist_remove_node.png differ diff --git a/en/chapter_array_and_linkedlist/ram_and_cache.assets/computer_storage_devices.png b/en/chapter_array_and_linkedlist/ram_and_cache.assets/computer_storage_devices.png index 25f848c43..a166d1b6c 100644 Binary files a/en/chapter_array_and_linkedlist/ram_and_cache.assets/computer_storage_devices.png and b/en/chapter_array_and_linkedlist/ram_and_cache.assets/computer_storage_devices.png differ diff --git a/en/chapter_array_and_linkedlist/ram_and_cache.assets/storage_pyramid.png b/en/chapter_array_and_linkedlist/ram_and_cache.assets/storage_pyramid.png index 55c91f7db..eafa8852e 100644 Binary files a/en/chapter_array_and_linkedlist/ram_and_cache.assets/storage_pyramid.png and b/en/chapter_array_and_linkedlist/ram_and_cache.assets/storage_pyramid.png differ diff --git a/en/chapter_computational_complexity/iteration_and_recursion.assets/iteration.png b/en/chapter_computational_complexity/iteration_and_recursion.assets/iteration.png index 8f0ac4968..3f25b1b72 100644 Binary files a/en/chapter_computational_complexity/iteration_and_recursion.assets/iteration.png and b/en/chapter_computational_complexity/iteration_and_recursion.assets/iteration.png differ diff --git a/en/chapter_computational_complexity/iteration_and_recursion.assets/nested_iteration.png b/en/chapter_computational_complexity/iteration_and_recursion.assets/nested_iteration.png index d46f7ef86..3d5b06cd5 100644 Binary files a/en/chapter_computational_complexity/iteration_and_recursion.assets/nested_iteration.png and b/en/chapter_computational_complexity/iteration_and_recursion.assets/nested_iteration.png differ diff --git a/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum.png b/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum.png index e64955147..697f7a80d 100644 Binary files a/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum.png and b/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum.png differ diff --git a/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum_depth.png b/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum_depth.png index a5692eacd..950a3dc0d 100644 Binary files a/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum_depth.png and b/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_sum_depth.png differ diff --git a/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_tree.png b/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_tree.png index 5bbc53a34..714942122 100644 Binary files a/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_tree.png and b/en/chapter_computational_complexity/iteration_and_recursion.assets/recursion_tree.png differ diff --git a/en/chapter_computational_complexity/iteration_and_recursion.assets/tail_recursion_sum.png b/en/chapter_computational_complexity/iteration_and_recursion.assets/tail_recursion_sum.png index c678438a8..202ff1c5e 100644 Binary files a/en/chapter_computational_complexity/iteration_and_recursion.assets/tail_recursion_sum.png and b/en/chapter_computational_complexity/iteration_and_recursion.assets/tail_recursion_sum.png differ diff --git a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_common_types.png b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_common_types.png index 31b4891c0..b6c077499 100644 Binary files a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_common_types.png and b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_common_types.png differ diff --git a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_exponential.png b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_exponential.png index f6ff889ba..8250f6724 100644 Binary files a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_exponential.png and b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_exponential.png differ diff --git a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_linear.png b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_linear.png index 7a3f37225..446e4eb8e 100644 Binary files a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_linear.png and b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_linear.png differ diff --git a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_quadratic.png b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_quadratic.png index e11cc168e..32c450864 100644 Binary files a/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_quadratic.png and b/en/chapter_computational_complexity/space_complexity.assets/space_complexity_recursive_quadratic.png differ diff --git a/en/chapter_computational_complexity/space_complexity.assets/space_types.png b/en/chapter_computational_complexity/space_complexity.assets/space_types.png index a8cc1986f..53f2b97b3 100644 Binary files a/en/chapter_computational_complexity/space_complexity.assets/space_types.png and b/en/chapter_computational_complexity/space_complexity.assets/space_types.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/asymptotic_upper_bound.png b/en/chapter_computational_complexity/time_complexity.assets/asymptotic_upper_bound.png index eecaef86c..8c0880316 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/asymptotic_upper_bound.png and b/en/chapter_computational_complexity/time_complexity.assets/asymptotic_upper_bound.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_common_types.png b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_common_types.png index f2221f3da..e67dc4079 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_common_types.png and b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_common_types.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_constant_linear_quadratic.png b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_constant_linear_quadratic.png index c45fd7afe..a99e6ea0d 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_constant_linear_quadratic.png and b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_constant_linear_quadratic.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_exponential.png b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_exponential.png index 20f77bfad..07376bc7d 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_exponential.png and b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_exponential.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_factorial.png b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_factorial.png index e62e1702f..b7c4e6fd2 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_factorial.png and b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_factorial.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic.png b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic.png index 354ac82ae..8a967fb86 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic.png and b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic_linear.png b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic_linear.png index ad3040172..0c84e9b9e 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic_linear.png and b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_logarithmic_linear.png differ diff --git a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_simple_example.png b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_simple_example.png index b10793083..252e6b1e6 100644 Binary files a/en/chapter_computational_complexity/time_complexity.assets/time_complexity_simple_example.png and b/en/chapter_computational_complexity/time_complexity.assets/time_complexity_simple_example.png differ diff --git a/en/chapter_data_structure/character_encoding.assets/ascii_table.png b/en/chapter_data_structure/character_encoding.assets/ascii_table.png index d4766d60f..fa8ae5161 100644 Binary files a/en/chapter_data_structure/character_encoding.assets/ascii_table.png and b/en/chapter_data_structure/character_encoding.assets/ascii_table.png differ diff --git a/en/chapter_data_structure/character_encoding.assets/unicode_hello_algo.png b/en/chapter_data_structure/character_encoding.assets/unicode_hello_algo.png index d0c42ad9e..a4a0b6d18 100644 Binary files a/en/chapter_data_structure/character_encoding.assets/unicode_hello_algo.png and b/en/chapter_data_structure/character_encoding.assets/unicode_hello_algo.png differ diff --git a/en/chapter_data_structure/character_encoding.assets/utf-8_hello_algo.png b/en/chapter_data_structure/character_encoding.assets/utf-8_hello_algo.png index 8cda09495..44a55ded3 100644 Binary files a/en/chapter_data_structure/character_encoding.assets/utf-8_hello_algo.png and b/en/chapter_data_structure/character_encoding.assets/utf-8_hello_algo.png differ diff --git a/en/chapter_data_structure/classification_of_data_structure.assets/classification_logic_structure.png b/en/chapter_data_structure/classification_of_data_structure.assets/classification_logic_structure.png index f7c515e58..9d9147065 100644 Binary files a/en/chapter_data_structure/classification_of_data_structure.assets/classification_logic_structure.png and b/en/chapter_data_structure/classification_of_data_structure.assets/classification_logic_structure.png differ diff --git a/en/chapter_data_structure/classification_of_data_structure.assets/classification_phisical_structure.png b/en/chapter_data_structure/classification_of_data_structure.assets/classification_phisical_structure.png index 11958abe4..c77622f94 100644 Binary files a/en/chapter_data_structure/classification_of_data_structure.assets/classification_phisical_structure.png and b/en/chapter_data_structure/classification_of_data_structure.assets/classification_phisical_structure.png differ diff --git a/en/chapter_data_structure/classification_of_data_structure.assets/computer_memory_location.png b/en/chapter_data_structure/classification_of_data_structure.assets/computer_memory_location.png index c29923bcd..94fc3bb80 100644 Binary files a/en/chapter_data_structure/classification_of_data_structure.assets/computer_memory_location.png and b/en/chapter_data_structure/classification_of_data_structure.assets/computer_memory_location.png differ diff --git a/en/chapter_data_structure/number_encoding.assets/1s_2s_complement.png b/en/chapter_data_structure/number_encoding.assets/1s_2s_complement.png index 587b8cd2a..7204fe671 100644 Binary files a/en/chapter_data_structure/number_encoding.assets/1s_2s_complement.png and b/en/chapter_data_structure/number_encoding.assets/1s_2s_complement.png differ diff --git a/en/chapter_data_structure/number_encoding.assets/ieee_754_float.png b/en/chapter_data_structure/number_encoding.assets/ieee_754_float.png index ba74b7bfc..dc38b2bcd 100644 Binary files a/en/chapter_data_structure/number_encoding.assets/ieee_754_float.png and b/en/chapter_data_structure/number_encoding.assets/ieee_754_float.png differ diff --git a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step1.png b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step1.png index 604be22da..7f1d28e52 100644 Binary files a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step1.png and b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step1.png differ diff --git a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step2.png b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step2.png index ca0c6430c..406aa4b03 100644 Binary files a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step2.png and b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step2.png differ diff --git a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step3.png b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step3.png index 36b604f31..1e29e738f 100644 Binary files a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step3.png and b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step3.png differ diff --git a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step4.png b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step4.png index 5dd90fa9b..1a49f81f3 100644 Binary files a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step4.png and b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step4.png differ diff --git a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step5.png b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step5.png index 7d2e1fb7c..baf617586 100644 Binary files a/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step5.png and b/en/chapter_introduction/algorithms_are_everywhere.assets/binary_search_dictionary_step5.png differ diff --git a/en/chapter_introduction/algorithms_are_everywhere.assets/greedy_change.png b/en/chapter_introduction/algorithms_are_everywhere.assets/greedy_change.png index abeafe785..c228910cb 100644 Binary files a/en/chapter_introduction/algorithms_are_everywhere.assets/greedy_change.png and b/en/chapter_introduction/algorithms_are_everywhere.assets/greedy_change.png differ diff --git a/en/chapter_introduction/algorithms_are_everywhere.assets/playing_cards_sorting.png b/en/chapter_introduction/algorithms_are_everywhere.assets/playing_cards_sorting.png index 68fa8f444..ffa4462b8 100644 Binary files a/en/chapter_introduction/algorithms_are_everywhere.assets/playing_cards_sorting.png and b/en/chapter_introduction/algorithms_are_everywhere.assets/playing_cards_sorting.png differ diff --git a/en/chapter_introduction/what_is_dsa.assets/relationship_between_data_structure_and_algorithm.png b/en/chapter_introduction/what_is_dsa.assets/relationship_between_data_structure_and_algorithm.png index d785391d7..a0e3e5768 100644 Binary files a/en/chapter_introduction/what_is_dsa.assets/relationship_between_data_structure_and_algorithm.png and b/en/chapter_introduction/what_is_dsa.assets/relationship_between_data_structure_and_algorithm.png differ diff --git a/en/chapter_preface/about_the_book.assets/hello_algo_mindmap.jpg b/en/chapter_preface/about_the_book.assets/hello_algo_mindmap.jpg deleted file mode 100644 index 9b0727f47..000000000 Binary files a/en/chapter_preface/about_the_book.assets/hello_algo_mindmap.jpg and /dev/null differ diff --git a/en/chapter_preface/about_the_book.assets/hello_algo_mindmap.png b/en/chapter_preface/about_the_book.assets/hello_algo_mindmap.png new file mode 100644 index 000000000..cc061a0b0 Binary files /dev/null and b/en/chapter_preface/about_the_book.assets/hello_algo_mindmap.png differ diff --git a/en/chapter_preface/about_the_book/index.html b/en/chapter_preface/about_the_book/index.html index 59509dcef..9f3625fe4 100644 --- a/en/chapter_preface/about_the_book/index.html +++ b/en/chapter_preface/about_the_book/index.html @@ -1602,7 +1602,7 @@
  • Data Structures: focuses on fundamental data types, classification methods, definitions, pros and cons, common operations, types, applications, and implementation methods of data structures such as array, linked list, stack, queue, hash table, tree, heap, graph, etc.
  • Algorithms: defines algorithms, discusses their pros and cons, efficiency, application scenarios, problem-solving steps, and includes sample questions for various algorithms such as search, sorting, divide and conquer, backtracking, dynamic programming, greedy algorithms, and more.
  • -

    Main Content of the Book

    +

    Main Content of the Book

    Figure 0-1   Main Content of the Book

    0.1.3   Acknowledgements

    diff --git a/en/chapter_preface/suggestions.assets/code_md_to_repo.png b/en/chapter_preface/suggestions.assets/code_md_to_repo.png index ca34b7c2f..6570b3d7f 100644 Binary files a/en/chapter_preface/suggestions.assets/code_md_to_repo.png and b/en/chapter_preface/suggestions.assets/code_md_to_repo.png differ diff --git a/en/chapter_preface/suggestions.assets/learning_route.png b/en/chapter_preface/suggestions.assets/learning_route.png index 9784ecc79..4492a788f 100644 Binary files a/en/chapter_preface/suggestions.assets/learning_route.png and b/en/chapter_preface/suggestions.assets/learning_route.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque.png b/en/chapter_stack_and_queue/deque.assets/array_deque.png deleted file mode 100644 index 5f0bcd353..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/array_deque.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_pop_first.png b/en/chapter_stack_and_queue/deque.assets/array_deque_pop_first.png deleted file mode 100644 index 9d203a63f..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/array_deque_pop_first.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_pop_last.png b/en/chapter_stack_and_queue/deque.assets/array_deque_pop_last.png deleted file mode 100644 index 2c18b17aa..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/array_deque_pop_last.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_push_first.png b/en/chapter_stack_and_queue/deque.assets/array_deque_push_first.png deleted file mode 100644 index 8b7b352e0..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/array_deque_push_first.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_push_last.png b/en/chapter_stack_and_queue/deque.assets/array_deque_push_last.png deleted file mode 100644 index 6b3baf39d..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/array_deque_push_last.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_step1.png b/en/chapter_stack_and_queue/deque.assets/array_deque_step1.png new file mode 100644 index 000000000..e6f3c834e Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/array_deque_step1.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_step2_push_last.png b/en/chapter_stack_and_queue/deque.assets/array_deque_step2_push_last.png new file mode 100644 index 000000000..6d5f96b92 Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/array_deque_step2_push_last.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_step3_push_first.png b/en/chapter_stack_and_queue/deque.assets/array_deque_step3_push_first.png new file mode 100644 index 000000000..edd2c86e9 Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/array_deque_step3_push_first.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_step4_pop_last.png b/en/chapter_stack_and_queue/deque.assets/array_deque_step4_pop_last.png new file mode 100644 index 000000000..c27fda4ef Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/array_deque_step4_pop_last.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/array_deque_step5_pop_first.png b/en/chapter_stack_and_queue/deque.assets/array_deque_step5_pop_first.png new file mode 100644 index 000000000..10c9f605e Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/array_deque_step5_pop_first.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/deque_operations.png b/en/chapter_stack_and_queue/deque.assets/deque_operations.png index a39788322..d2413b678 100644 Binary files a/en/chapter_stack_and_queue/deque.assets/deque_operations.png and b/en/chapter_stack_and_queue/deque.assets/deque_operations.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque.png deleted file mode 100644 index d61502010..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_pop_first.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_pop_first.png deleted file mode 100644 index b50944ef1..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_pop_first.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_pop_last.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_pop_last.png deleted file mode 100644 index 8df343375..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_pop_last.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_push_first.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_push_first.png deleted file mode 100644 index 2cdd94a5a..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_push_first.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_push_last.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_push_last.png deleted file mode 100644 index eed3f18ea..000000000 Binary files a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_push_last.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step1.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step1.png new file mode 100644 index 000000000..fa24a79b6 Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step1.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step2_push_last.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step2_push_last.png new file mode 100644 index 000000000..ec4752eae Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step2_push_last.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step3_push_first.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step3_push_first.png new file mode 100644 index 000000000..e84278f57 Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step3_push_first.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step4_pop_last.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step4_pop_last.png new file mode 100644 index 000000000..3d451a879 Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step4_pop_last.png differ diff --git a/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step5_pop_first.png b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step5_pop_first.png new file mode 100644 index 000000000..09ce1f537 Binary files /dev/null and b/en/chapter_stack_and_queue/deque.assets/linkedlist_deque_step5_pop_first.png differ diff --git a/en/chapter_stack_and_queue/deque/index.html b/en/chapter_stack_and_queue/deque/index.html index 2ebee5aa8..57ef2f337 100644 --- a/en/chapter_stack_and_queue/deque/index.html +++ b/en/chapter_stack_and_queue/deque/index.html @@ -1984,19 +1984,19 @@
    -

    Implementing Double-Ended Queue with Doubly Linked List for Enqueue and Dequeue Operations

    +

    Implementing Double-Ended Queue with Doubly Linked List for Enqueue and Dequeue Operations

    -

    linkedlist_deque_push_last

    +

    linkedlist_deque_push_last

    -

    linkedlist_deque_push_first

    +

    linkedlist_deque_push_first

    -

    linkedlist_deque_pop_last

    +

    linkedlist_deque_pop_last

    -

    linkedlist_deque_pop_first

    +

    linkedlist_deque_pop_first

    @@ -3603,19 +3603,19 @@
    -

    Implementing Double-Ended Queue with Array for Enqueue and Dequeue Operations

    +

    Implementing Double-Ended Queue with Array for Enqueue and Dequeue Operations

    -

    array_deque_push_last

    +

    array_deque_push_last

    -

    array_deque_push_first

    +

    array_deque_push_first

    -

    array_deque_pop_last

    +

    array_deque_pop_last

    -

    array_deque_pop_first

    +

    array_deque_pop_first

    diff --git a/en/chapter_stack_and_queue/queue.assets/array_queue.png b/en/chapter_stack_and_queue/queue.assets/array_queue.png deleted file mode 100644 index 29c7f4962..000000000 Binary files a/en/chapter_stack_and_queue/queue.assets/array_queue.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/queue.assets/array_queue_pop.png b/en/chapter_stack_and_queue/queue.assets/array_queue_pop.png deleted file mode 100644 index c57e6a198..000000000 Binary files a/en/chapter_stack_and_queue/queue.assets/array_queue_pop.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/queue.assets/array_queue_push.png b/en/chapter_stack_and_queue/queue.assets/array_queue_push.png deleted file mode 100644 index 71dcd1d78..000000000 Binary files a/en/chapter_stack_and_queue/queue.assets/array_queue_push.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/queue.assets/array_queue_step1.png b/en/chapter_stack_and_queue/queue.assets/array_queue_step1.png new file mode 100644 index 000000000..7c0f81570 Binary files /dev/null and b/en/chapter_stack_and_queue/queue.assets/array_queue_step1.png differ diff --git a/en/chapter_stack_and_queue/queue.assets/array_queue_step2_push.png b/en/chapter_stack_and_queue/queue.assets/array_queue_step2_push.png new file mode 100644 index 000000000..8c9dd1230 Binary files /dev/null and b/en/chapter_stack_and_queue/queue.assets/array_queue_step2_push.png differ diff --git a/en/chapter_stack_and_queue/queue.assets/array_queue_step3_pop.png b/en/chapter_stack_and_queue/queue.assets/array_queue_step3_pop.png new file mode 100644 index 000000000..029e6a35e Binary files /dev/null and b/en/chapter_stack_and_queue/queue.assets/array_queue_step3_pop.png differ diff --git a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue.png b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue.png deleted file mode 100644 index 7cff9b1b9..000000000 Binary files a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_pop.png b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_pop.png deleted file mode 100644 index 6a43121f6..000000000 Binary files a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_pop.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_push.png b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_push.png deleted file mode 100644 index a53b9f44d..000000000 Binary files a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_push.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step1.png b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step1.png new file mode 100644 index 000000000..8b888a3a7 Binary files /dev/null and b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step1.png differ diff --git a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step2_push.png b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step2_push.png new file mode 100644 index 000000000..2b4c2731a Binary files /dev/null and b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step2_push.png differ diff --git a/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step3_pop.png b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step3_pop.png new file mode 100644 index 000000000..4fa752c49 Binary files /dev/null and b/en/chapter_stack_and_queue/queue.assets/linkedlist_queue_step3_pop.png differ diff --git a/en/chapter_stack_and_queue/queue.assets/queue_operations.png b/en/chapter_stack_and_queue/queue.assets/queue_operations.png index ce3a6f2bc..13d9afa25 100644 Binary files a/en/chapter_stack_and_queue/queue.assets/queue_operations.png and b/en/chapter_stack_and_queue/queue.assets/queue_operations.png differ diff --git a/en/chapter_stack_and_queue/queue/index.html b/en/chapter_stack_and_queue/queue/index.html index fc24b1516..dfeff0869 100644 --- a/en/chapter_stack_and_queue/queue/index.html +++ b/en/chapter_stack_and_queue/queue/index.html @@ -1947,13 +1947,13 @@
    -

    Implementing Queue with Linked List for Enqueue and Dequeue Operations

    +

    Implementing Queue with Linked List for Enqueue and Dequeue Operations

    -

    linkedlist_queue_push

    +

    linkedlist_queue_push

    -

    linkedlist_queue_pop

    +

    linkedlist_queue_pop

    @@ -2825,13 +2825,13 @@
    -

    Implementing Queue with Array for Enqueue and Dequeue Operations

    +

    Implementing Queue with Array for Enqueue and Dequeue Operations

    -

    array_queue_push

    +

    array_queue_push

    -

    array_queue_pop

    +

    array_queue_pop

    diff --git a/en/chapter_stack_and_queue/stack.assets/array_stack.png b/en/chapter_stack_and_queue/stack.assets/array_stack.png deleted file mode 100644 index e8e3445b7..000000000 Binary files a/en/chapter_stack_and_queue/stack.assets/array_stack.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/stack.assets/array_stack_pop.png b/en/chapter_stack_and_queue/stack.assets/array_stack_pop.png deleted file mode 100644 index be56b586d..000000000 Binary files a/en/chapter_stack_and_queue/stack.assets/array_stack_pop.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/stack.assets/array_stack_push.png b/en/chapter_stack_and_queue/stack.assets/array_stack_push.png deleted file mode 100644 index 7caf4d72e..000000000 Binary files a/en/chapter_stack_and_queue/stack.assets/array_stack_push.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/stack.assets/array_stack_step1.png b/en/chapter_stack_and_queue/stack.assets/array_stack_step1.png new file mode 100644 index 000000000..0cbbb17d1 Binary files /dev/null and b/en/chapter_stack_and_queue/stack.assets/array_stack_step1.png differ diff --git a/en/chapter_stack_and_queue/stack.assets/array_stack_step2_push.png b/en/chapter_stack_and_queue/stack.assets/array_stack_step2_push.png new file mode 100644 index 000000000..b5862c7ad Binary files /dev/null and b/en/chapter_stack_and_queue/stack.assets/array_stack_step2_push.png differ diff --git a/en/chapter_stack_and_queue/stack.assets/array_stack_step3_pop.png b/en/chapter_stack_and_queue/stack.assets/array_stack_step3_pop.png new file mode 100644 index 000000000..4b8843994 Binary files /dev/null and b/en/chapter_stack_and_queue/stack.assets/array_stack_step3_pop.png differ diff --git a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack.png b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack.png deleted file mode 100644 index 5821ca82a..000000000 Binary files a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_pop.png b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_pop.png deleted file mode 100644 index 09a57488b..000000000 Binary files a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_pop.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_push.png b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_push.png deleted file mode 100644 index b46053185..000000000 Binary files a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_push.png and /dev/null differ diff --git a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step1.png b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step1.png new file mode 100644 index 000000000..fea1a09b2 Binary files /dev/null and b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step1.png differ diff --git a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step2_push.png b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step2_push.png new file mode 100644 index 000000000..e97f5aa37 Binary files /dev/null and b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step2_push.png differ diff --git a/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step3_pop.png b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step3_pop.png new file mode 100644 index 000000000..d9ac38251 Binary files /dev/null and b/en/chapter_stack_and_queue/stack.assets/linkedlist_stack_step3_pop.png differ diff --git a/en/chapter_stack_and_queue/stack.assets/stack_operations.png b/en/chapter_stack_and_queue/stack.assets/stack_operations.png index f28a5fbc9..81484f746 100644 Binary files a/en/chapter_stack_and_queue/stack.assets/stack_operations.png and b/en/chapter_stack_and_queue/stack.assets/stack_operations.png differ diff --git a/en/chapter_stack_and_queue/stack/index.html b/en/chapter_stack_and_queue/stack/index.html index fd6deaa91..ae6deaf0f 100644 --- a/en/chapter_stack_and_queue/stack/index.html +++ b/en/chapter_stack_and_queue/stack/index.html @@ -1960,13 +1960,13 @@
    -

    Implementing Stack with Linked List for Push and Pop Operations

    +

    Implementing Stack with Linked List for Push and Pop Operations

    -

    linkedlist_stack_push

    +

    linkedlist_stack_push

    -

    linkedlist_stack_pop

    +

    linkedlist_stack_pop

    @@ -2705,13 +2705,13 @@
    -

    Implementing Stack with Array for Push and Pop Operations

    +

    Implementing Stack with Array for Push and Pop Operations

    -

    array_stack_push

    +

    array_stack_push

    -

    array_stack_pop

    +

    array_stack_pop

    diff --git a/en/sitemap.xml b/en/sitemap.xml index 8b90f7ed2..4d6f9af44 100644 --- a/en/sitemap.xml +++ b/en/sitemap.xml @@ -2,187 +2,187 @@ https://www.hello-algo.com/en/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_array_and_linkedlist/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_array_and_linkedlist/array/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_array_and_linkedlist/linked_list/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_array_and_linkedlist/list/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_array_and_linkedlist/ram_and_cache/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_array_and_linkedlist/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_computational_complexity/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_computational_complexity/iteration_and_recursion/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_computational_complexity/performance_evaluation/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_computational_complexity/space_complexity/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_computational_complexity/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_computational_complexity/time_complexity/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_data_structure/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_data_structure/basic_data_types/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_data_structure/character_encoding/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_data_structure/classification_of_data_structure/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_data_structure/number_encoding/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_data_structure/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_hashing/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_hashing/hash_algorithm/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_hashing/hash_collision/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_hashing/hash_map/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_hashing/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_introduction/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_introduction/algorithms_are_everywhere/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_introduction/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_introduction/what_is_dsa/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_preface/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_preface/about_the_book/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_preface/suggestions/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_preface/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_stack_and_queue/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_stack_and_queue/deque/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_stack_and_queue/queue/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_stack_and_queue/stack/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/en/chapter_stack_and_queue/summary/ - 2024-03-01 + 2024-03-04 daily \ No newline at end of file diff --git a/en/sitemap.xml.gz b/en/sitemap.xml.gz index f10d85753..06cf6153a 100644 Binary files a/en/sitemap.xml.gz and b/en/sitemap.xml.gz differ diff --git a/sitemap.xml b/sitemap.xml index 78f0bf204..6d42aee4f 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -2,522 +2,522 @@ https://www.hello-algo.com/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_appendix/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_appendix/contribution/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_appendix/installation/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_appendix/terminology/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_array_and_linkedlist/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_array_and_linkedlist/array/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_array_and_linkedlist/linked_list/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_array_and_linkedlist/list/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_array_and_linkedlist/ram_and_cache/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_array_and_linkedlist/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_backtracking/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_backtracking/backtracking_algorithm/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_backtracking/n_queens_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_backtracking/permutations_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_backtracking/subset_sum_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_backtracking/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_computational_complexity/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_computational_complexity/iteration_and_recursion/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_computational_complexity/performance_evaluation/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_computational_complexity/space_complexity/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_computational_complexity/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_computational_complexity/time_complexity/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_data_structure/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_data_structure/basic_data_types/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_data_structure/character_encoding/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_data_structure/classification_of_data_structure/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_data_structure/number_encoding/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_data_structure/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_divide_and_conquer/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_divide_and_conquer/binary_search_recur/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_divide_and_conquer/build_binary_tree_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_divide_and_conquer/divide_and_conquer/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_divide_and_conquer/hanota_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_divide_and_conquer/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/dp_problem_features/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/dp_solution_pipeline/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/edit_distance_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/intro_to_dynamic_programming/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/knapsack_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_dynamic_programming/unbounded_knapsack_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_graph/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_graph/graph/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_graph/graph_operations/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_graph/graph_traversal/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_graph/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_greedy/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_greedy/fractional_knapsack_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_greedy/greedy_algorithm/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_greedy/max_capacity_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_greedy/max_product_cutting_problem/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_greedy/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_hashing/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_hashing/hash_algorithm/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_hashing/hash_collision/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_hashing/hash_map/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_hashing/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_heap/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_heap/build_heap/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_heap/heap/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_heap/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_heap/top_k/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_introduction/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_introduction/algorithms_are_everywhere/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_introduction/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_introduction/what_is_dsa/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_preface/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_preface/about_the_book/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_preface/suggestions/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_preface/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_reference/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_searching/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_searching/binary_search/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_searching/binary_search_edge/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_searching/binary_search_insertion/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_searching/replace_linear_by_hashing/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_searching/searching_algorithm_revisited/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_searching/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/bubble_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/bucket_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/counting_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/heap_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/insertion_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/merge_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/quick_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/radix_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/selection_sort/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/sorting_algorithm/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_sorting/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_stack_and_queue/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_stack_and_queue/deque/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_stack_and_queue/queue/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_stack_and_queue/stack/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_stack_and_queue/summary/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_tree/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_tree/array_representation_of_tree/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_tree/avl_tree/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_tree/binary_search_tree/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_tree/binary_tree/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_tree/binary_tree_traversal/ - 2024-03-01 + 2024-03-04 daily https://www.hello-algo.com/chapter_tree/summary/ - 2024-03-01 + 2024-03-04 daily \ No newline at end of file diff --git a/sitemap.xml.gz b/sitemap.xml.gz index 217e7f097..e9e850da0 100644 Binary files a/sitemap.xml.gz and b/sitemap.xml.gz differ