No. | Program Name | Duration | Deployment |
---|---|---|---|
1. | Hacktoberfest (2022) | 1st Oct 2022 - 31st Oct 2022 | Algorithm |
2. | Social Winter of Code (2023) | 1st Jan 2023 - 10th Apr 2023 | Algorithm |
-
The resources are categorized based on programming language. One folder for one programming language
- Each folder has different subfolders. The subfolder represents the category algorithm belongs to
- Each subfolder has different files. Filename represents the name of the algorithm
- Each folder has different subfolders. The subfolder represents the category algorithm belongs to
No. | Algorithm Name | Available languages | Category |
---|---|---|---|
1. | Caesar Cipher | C++, Python | Cryptography |
2. | RSA | Python | Cryptography |
3. | Vignere Cipher | Python | Cryptography |
4. | Huffman Coding | C, C++, Java,Python | Data Compression |
5. | Banker's Algorithm | C, Python | Deadlock Avoidance |
6. | Karatsuba Algorithm | C++, Java, Python | Divide and Conquer |
7. | Strassen's Matrix Multiplication | C, Python | Divide and Conquer |
8. | 0/1 Knapsack | C, C++, Java, Python | Dynamic Programming |
9. | Edit Distance | C++ | Dynamic Programming |
10. | Longest Common Subsequence | C++ | Dynamic Programming |
11. | Matrix Chain Multiplication | C++ | Dynamic Programming |
12. | Travelling Salesman Problem | C | Dynamic Programming |
13. | Bellman Ford | C++ | Graphs |
14. | Dijkstra | C, C++, Java, Python | Graphs |
15. | Dinic's Algorithm | C++, Java, Python | Graphs |
16. | Floyd Warshall | C, C++, Java, Python | Graphs |
17. | Kosaraju's Algorithm | C++ | Graphs |
18. | Prim's Algorithm | C++, Java | Graphs |
19. | Tarjan Algorithm | C++ | Graphs |
20. | Activity Selection | C, C++, Java, Python | Greedy Algorithm |
21. | Fractional Knapsack | C, C++, Python | Greedy Algorithm |
22. | Job Sequencing | C++, Python | Greedy Algorithm |
23. | Merge Interval Algorithm | C, C++, Java, Python | Greedy Algorithm |
24. | Addition of two Linked Lists | C++ | Linked List |
25. | Circular Linked List | C, C++, Python | Linked List |
26. | Doubly Linked List | C++, Java, Python | Linked List |
27. | Intersection of two Linked Lists | C++ | Linked List |
28. | LRU Cache Design | C, C++, Java, Python | Linked List |
29. | Merge Two Sorted Linked List | C, C++, Java, Python | Linked List |
30. | Palindrome Linked List | C, C++, Java, Python | Linked List |
31. | Reverse Linked List | C, C++, Java, Python | Linked List |
32. | Singly Linked List | C, C++, Python | Linked List |
33. | Decision Tree | Python | Machine Learning |
34. | K-Nearest Neighbours | C++ | Machine Learning |
35. | Linear Regression | C++, Python | Machine Learning |
36. | Logistic Regression | C++, Python | Machine Learning |
37. | Armstrong Numbers | C, C++, Java, Python | Maths |
38. | Binary Exponentiation | C++ | Maths |
39. | Bennett's Formula | C, C++, Java, Python | Maths |
40. | Bisection Algorithm | C, C++, Java, Python | Maths |
41. | Closures of Relations | C, C++, Java, Python | Maths |
42. | Decimal <-> Binary Converter | C, Python | Maths |
43. | Factors | C, C++, Java, Python | Maths |
44. | GCD & LCM | C, C++, Java, Python | Maths |
45. | Prefix-Postfix-Infix Interconversion | C++, Python | Maths |
46. | Prime Number | C, C++, Java, Python | Maths |
47. | Reverse Integer | C++, Python | Maths |
48. | Sieve Eratosthenes Algorithm | C, C++, Java,Python | Maths |
49. | Rabin Karp | C++ | Pattern Matching |
50. | BFS and DFS | C++, Java | Searching |
51. | Binary Search on 2D Matrix | Java | Searching |
52. | Binary Search | C, C++, Java, Python | Searching |
53. | Linear Search | C, C++, Java, Python | Searching |
54. | Order Agnostic Binary Search | C++ | Searching |
55. | Ternary Search | C, C++, Java, Python | Searching |
56. | Sliding Window Problems | C++ | Sliding Window |
57. | Bubble Sort | C, C++, Java, Python | Sorting |
58. | Counting Sort | C++, Python | Sorting |
59. | Cyclic Sort | C++, Java, Python | Sorting |
60. | Cocktail Sort | Sorting | |
61. | Dutch National Flag | C++, Java, Python | Sorting |
62. | Gnome Sort | C, C++, Java, Python | Sorting |
63. | Heap Sort | C, C++, Java, Python | Sorting |
64. | Insertion Sort | C, C++, Java, Python | Sorting |
65. | Merge Sort | C, C++, Java, Python | Sorting |
66. | Quick Sort | C, C++ | Sorting |
67. | Selection Sort | C, C++, Java, Python | Sorting |
68. | Topological Sort | C++ | Sorting |
69. | Wave Sort | C++, Python | Sorting |
70. | Max Area in Histogram | C, C++, Java, Python | Stacks |
71. | Next Greater Element | C++, Python | Stacks |
72. | Rain Water Problem | C, C++, Java, Python | Stacks |
73. | Beautiful String Algorithm | C, C++, Java, Python | Strings |
74. | Boyer-Moore Majority Voting | C, C++, Python | Sub-Arrays |
75. | Kadane's Algorithm | C++, Java, Python | Sub-Arrays |
76. | AVL Tree | C++, Java, Python | Trees |
77. | Binary Search Tree | C, C++ | Trees |
78. | Binary Tree to BST | C, C++, Java, Python | Trees |
79. | Morris Traversal | C, C++, Python | Trees |
80. | Red-Black Tree | C++, Python | Trees |
81. | Tree Traversal | C, C++, Java, Python | Trees |
- Fork and clone the Repo by typing the following commands in the terminal
$ git clone https://github.com/Kumar-laxmi/Algorithms.git
$ cd Algorithms
- Now to add your resource to website, add an object with keys same as listed in existing objects in the file.
- Save and commit your code.
- Push to your fork of the repository , navigate to original repository and make a pull request.
- Clone the Repository after forking
$ git clone https://github.com/<your-github-username>/Algorithms.git
$ cd techsquad-community-website
-
Make changes to the code(for ex- add an update route)
-
Create a Branch using:
$ git checkout -b <branch-name>
- Stage your changes using:
$ git add .
- Commit your changes using:
$ git commit -m "add any comment"
- Push the changes to the forked repository using:
$ git push origin <branch-name>
- Navigate to the original repository and make a pull request
- In case of merge conflict fetch and merge from the remote repository
Please don't forget to update the Available Resources section