mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-04-25 02:53:18 +08:00
feat: Add reverse linked list algorithim (#1596)
* add: reverse linked list algorithim * updating DIRECTORY.md * clang-format and clang-tidy fixes for5cac47c9* Update data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * Update the description in data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes for19b4a937* Updating data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * add:test for the reversing algorithim * fix: synatx changes * docs :added an external link for explanation of the algorithim * fix: suggested changes * fix: chamges in the code * docs : changes required in the docs * docs :fix indentation * fix : ouptut statement changes * fix: clang-tidy warnings * formatting filenamesf7695035* updating DIRECTORY.md * clang-format and clang-tidy fixes forf7695035* fix : display function removed * updating DIRECTORY.md * clang-format and clang-tidy fixes for38547be2* fix: changed the data types * clang-format and clang-tidy fixes for3b2e68c2* docs : documentation fixes Co-authored-by: David Leal <halfpacho@gmail.com> * docs : documentation changes Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes for57953be1* docs: fix changes Co-authored-by: David Leal <halfpacho@gmail.com> * clang-format and clang-tidy fixes fordb8e74a9* fix : display changes Co-authored-by: ERR ! <75872316+amino19@users.noreply.github.com> * fix : added try block * fix: try-catch block * fix :merge conflict * docs:documentation changes * added more efficient test cases * clang-format and clang-tidy fixes for83ee6e44* Update data_structures/reverse_a_linked_list.cpp Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: David Leal <halfpacho@gmail.com> Co-authored-by: Abhinn Mishra <49574460+mishraabhinn@users.noreply.github.com> Co-authored-by: ERR ! <75872316+amino19@users.noreply.github.com>
This commit is contained in:
@@ -52,6 +52,7 @@
|
||||
* [Queue Using Linkedlist](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue_using_linkedlist.cpp)
|
||||
* [Queue Using Two Stacks](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/queue_using_two_stacks.cpp)
|
||||
* [Rb Tree](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/rb_tree.cpp)
|
||||
* [Reverse A Linked List](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/reverse_a_linked_list.cpp)
|
||||
* [Skip List](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/skip_list.cpp)
|
||||
* [Sparse Table](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/sparse_table.cpp)
|
||||
* [Stack](https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/data_structures/stack.h)
|
||||
|
||||
Reference in New Issue
Block a user