diff --git a/Algorithms/Sorting.md b/Algorithms/Sorting.md index 5c63858..d9eac29 100644 --- a/Algorithms/Sorting.md +++ b/Algorithms/Sorting.md @@ -17,3 +17,5 @@ Sorting algorithms are methods used to rearrange elements in a list or array int - Radix Sort: Sorts numbers by processing individual digits from least significant to most significant. *Each algorithm has different performance characteristics and is suitable for different types of data and use cases.* + +Feel free to implement them on your own! \ No newline at end of file diff --git a/README.md b/README.md index 34fb263..486a647 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ C++ was designed with systems programming and embedded, resource-constrained sof - C/C++ both are awesome programming languages. Yet Powerful also. - You can find Contribution Guidelines [here](https://github.com/offensive-vk/Classics/blob/classic/.github/CONTRIBUTING.md) and Security Guidelines [here.](https://github.com/offensive-vk/Classics/blob/classic/.github/SECURITY.md) - This Repository Contains All of My Best C & C++ Programs. -- Trick - All Valid C Code is Also A Valid C++ Code. +- Trick - Every C Program is also a Valid C++ Program. - (i.e You Can Save Your C Source Code with .cpp extension.) - Enjoy ! _You can try Shell Scripting too._ [Try Now >](https://github.com/offensive-vk/Classics/blob/classic/Bash/) @@ -58,13 +58,13 @@ int main(int argc, char const *argv[]) { } ``` -### To Compile any .cpp | .cxx | .c++ Source File : +### To Compile any .cpp | .cxx | .c++ file ```bash $ g++ filename.cpp -o filename ``` -### To Compile Any .c Source File +### To Compile any .c program ```bash $ gcc filename.c -o filename @@ -72,8 +72,9 @@ $ gcc filename.c -o filename You are allowed to copy and implement these programs freely. -## Happy Coding ~ [offensive-vk](https://github.com/offensive-vk/) +## Happy Coding - [offensive-vk](https://github.com/offensive-vk/) +***

© Vedansh 2020 - Present