hello-algo/codes/c/chapter_sorting
gonglja d960c99a1f
fix: bug fixes for array_hash_map.c and counting_sort.c (#968)
* fix(codes/cpp): Memory leak fix: the space was not freed when pop removed the element.

* fix(codes/cpp): Fix access error when printArray(arr, 0)

* Update PrintUtil.hpp

* fix(codes/c): Fix some errors of cmake build

* feat(codes/c): Add hashing_search.c

* styles(codes/c): Modify function description

* styles(codes/c): Modify binary_search.c code style

* fix(codes/c): Fix the problem in binary_tree_bfs.c and the problem that the memory is not released.

* feat: Add preorder_traversal_i_compact.c

* feat(codes/c): Add head_sort.c

* feat(codes/c): Add bucket_sort.c

* feat(codes/c): Add binary_search_edge.c

* fix(codes/c): Add programs that are not managed by cmake (c code)

* feat(codes/c): Add selection_sort.c

* style(codes/c): Change swap in selection_sort.c to `selectionSort`

* styles(codes/c): Change style.

* fix(codes/c): Fix some formatting errors and temporarily remove backtracking chapters

* fix(codes/c): Fix space_complexity.c build error.

* feat(codes/c): Add array_binary_tree.c

* feat(code/c): Update push_back and pop_back in vector.h

* styles(codes/c): Adjust  format.

* feat(codes/c): Add `interation.c ` `recursion.c` `simple_hash.c` `binary_search_edge.c` `binary_search_insertion.c` in C codes.

* fix(mylist.c): Fix `insert` function in `mylist.c`

https://github.com/krahets/hello-algo/discussions/32#discussioncomment-6974163

* feat(codes/c): Add binary_search_recur.c

* fix(codes/c): Bug fixes in discussion
https://github.com/krahets/hello-algo/discussions/78\#discussioncomment-7611511
https://github.com/krahets/hello-algo/discussions/428\#discussioncomment-7637613

---------

Co-authored-by: Yudong Jin <krahets@163.com>
2023-11-26 22:56:30 +08:00
..
bubble_sort.c Format C, C++, C#, Go, Java, Python, Rust code. 2023-09-02 23:54:38 +08:00
bucket_sort.c feat: Add C codes for bucket sort, heap sort, selection sort, binary search edge (#525) 2023-06-02 02:51:35 +08:00
CMakeLists.txt feat: Add C codes for bucket sort, heap sort, selection sort, binary search edge (#525) 2023-06-02 02:51:35 +08:00
counting_sort.c fix: bug fixes for array_hash_map.c and counting_sort.c (#968) 2023-11-26 22:56:30 +08:00
heap_sort.c Polish the chapter 2023-08-20 14:51:39 +08:00
insertion_sort.c Update the comments of bubble sort 2023-05-22 23:05:37 +08:00
merge_sort.c Re-implement merge sort function. (#888) 2023-10-26 02:56:33 +08:00
quick_sort.c Update bubble sort and insertion sort. 2023-05-23 21:20:14 +08:00
radix_sort.c Rename the common modules in Java, C++ and C. 2023-04-24 04:11:18 +08:00
selection_sort.c A few improvements to the C code. 2023-10-27 01:13:36 +08:00