# Algorithm **Repository Path**: modnar/Algorithm ## Basic Information - **Project Name**: Algorithm - **Description**: Algorithms and Data structure - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-02-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Algorithm ## Sort | # | Algorithm | Solution | Note | |---| --------- | -------- | ---- | | 1 | [Quicksort](./Sort/Quicksort/) | [C++](./Sort/Quicksort/main.cpp) || | 2 | [Mergesort](./Sort/Mergesort/) | [C++](./Sort/Mergesort/main.cpp) || | 3 | [Selectsort](./Sort/Selectsort/) | [C++](./Sort/Selectsort/main.cpp) || | 4 | [Bubblesort](./Sort/Bubblesort/) | [C++](./Sort/Bubblesort/main.cpp) || | 5 | [Insertsort](./Sort/Insertsort/) | [C++](./Sort/Insertsort/main.cpp) || ## Search | # | Algorithm | Solution | Note | |---| --------- | -------- | ---- | | 1 | [BinarySearch](./Search/BinarySearch/) | [C++](./Search/BinarySearch/BinarySearch.cpp) || | 2 | [SequenceSearch](./Search/SequenceSearch/) | [C++](./Search/SequenceSearch/SequenceSearch.cpp) || | 3 | [InsertionSearch](./Search/InsertionSearch/) | [C++](./Search/InsertionSearch/InsertionSearch.cpp) || ## String Match | # | Algorithm | Solution | Note | |---| --------- | -------- | ---- | | 1 | [KMP](./StringMatch/KMP/) | [C++](./StringMatch/KMP/main.cpp) ||