1
1
# Leetcode / Data-Structures-and-Algorithms
2
2
This repository contains solutions to coding problems based on Data Structures and Algorithms.
3
3
## Graphs, DFS & BFS
4
- - [ 547. Friend Circles] ( GraphsDFS&BFS/Friend_Circles.java )
5
- - [ 200. Number of Islands] ( GraphsDFS&BFS/Number_of_Islands.java )
6
- - [ 133. Clone Graph] ( GraphsDFS&BFS/Clone_Graph.java )
7
- - [ 102. Binary Tree Level Order Traversal] ( GraphsDFS&BFS/Binary_Tree_Level_Order_Traversal.java )
4
+ - [ Leetcode 547. Friend Circles] ( GraphsDFS&BFS/Friend_Circles.java )
5
+ - [ Leetcode 200. Number of Islands] ( GraphsDFS&BFS/Number_of_Islands.java )
6
+ - [ Leetcode 133. Clone Graph] ( GraphsDFS&BFS/Clone_Graph.java )
7
+ - [ Leetcode 102. Binary Tree Level Order Traversal] ( GraphsDFS&BFS/Binary_Tree_Level_Order_Traversal.java )
8
8
- [ Topological Sort - DFS] ( GraphsDFS&BFS/TopologicalSort_DFS.java )
9
9
- [ Topological Sort - Kahn] ( GraphsDFS&BFS/KahnTopologicalSort.java )
10
10
- [ Leetcode 207. Course Schedule] ( GraphsDFS&BFS/Course_Schedule.java )
@@ -14,9 +14,9 @@ This repository contains solutions to coding problems based on Data Structures a
14
14
- [ Leetcode 230. Kth Smallest Element in a BST] ( Trees/Kth_Smallest_Element_in_a_BST.java )
15
15
- [ Leetcode 98. Validate Binary Search Tree] ( Trees/Validate_Binary_Search_Tree.java )
16
16
## Stacks
17
- - [ 394. Decode String] ( Stacks/Decode_String.java )
17
+ - [ Leetcode 394. Decode String] ( Stacks/Decode_String.java )
18
18
## Linked Lists
19
- - [ 19. Remove Nth Node From End of List] ( LinkedList/Remove_Nth_Node_From_End_of_List.java )
19
+ - [ Leetcode 19. Remove Nth Node From End of List] ( LinkedList/Remove_Nth_Node_From_End_of_List.java )
20
20
## Sliding Window
21
21
- [ Leetcode 438. Find All Anagrams In a String] ( SlidingWindow/Find_All_Anagarms_In_A_String.java )
22
22
- [ Leetcode 78. Minimum Window Substring] ( SlidingWindow/Minimum_Window_Substring.java )
@@ -28,7 +28,7 @@ This repository contains solutions to coding problems based on Data Structures a
28
28
- [ Binary Search Topcoder Notes] ( BinarySearch/Binary_Search_Notes.txt )
29
29
- [ Binary Search Variants] ( BinarySearch/Binary_Search_Variants.java )
30
30
- [ Leetcode 1351. Count Negative Numbers in a Sorted Matrix] ( BinarySearch/Count_Negative_Numbers_in_a_Sorted_Matrix.java )
31
- - [ Leetcode 153. Find Minimum in Rotated Sorted Array ] (BinarySearch/Find_Minimum in_Rotated_Sorted_Array.java)
31
+ - [ Leetcode 153. Find Minimum in Rotated Sorted Array] (BinarySearch/Find_Minimum in_Rotated_Sorted_Array.java)
32
32
- [ Leetcode 162. Find Peak Element] ( BinarySearch/Find_Peak_Element.java )
33
33
- [ Leetcode 278. First Bad Version] ( BinarySearch/First_Bad_Version.java )
34
34
- [ Leetcode 374. Guess Number Higher or Lower] ( BinarySearch/Guess_Number_Higher_or_Lower.java )
0 commit comments