├── Algorithms ├── Finding_prime_in_sqrt(n) .c ├── Sieve_Of_Erastothenes.c ├── sparse_matrix_representation.c └── square_root.c ├── Array_Problems ├── 10_Element_odd_times.c ├── 11_printRepeating.c ├── 1_Common_Elements.c ├── 1_Duplicate_Num.c ├── 1_Missing.c ├── 1_Recursive_Even_num.c ├── 2_First_Duplicate.c ├── 2_Iterative_Even_num.c ├── 2_Strictly_smaller_num.c ├── 2a_First_NonRepeating.c ├── 2b_Smallest_Num.c ├── 3_Non_Recursive_Fib.c ├── 3_Sum_Recursive.c ├── 3_Sum_k.c ├── 3_arrange.c ├── 4_Recursive_Sum.c ├── 4_Sum_closestToZero.c ├── 4_num_of_Zeros.c ├── 4_sum_equal_zero.c ├── 5_Duplicates.c ├── 5_Max_Repeating.c ├── 5a_Iterative_Sum_of_digit.c ├── 5b_Recursive_Sum_of_digit.c ├── 6_Maximum.c ├── 6_Recursion_Fib_N_Calls.c ├── 6_Strictly_greater_num.c ├── 6_remove_element.c ├── 7_Num_of_occurrence.c ├── 7_Recursive_Binary.c ├── 7_Repeating_k_times.c ├── 8_Row_with_Max_0.c ├── 8a_Trivial_GCD.c ├── 8b_Euclidean_GCD.c ├── 9_Missing.c ├── Maximum-Sum-Subarray-[Kadanes-Algorithm] ├── missing_ranges.py └── spiral_matrix.py ├── Binary_Tree ├── 1_Binary_tree.c ├── 2_LookUp.c ├── 3_Num_of_Nodes.c ├── 4_Delete_Node.c ├── 5_Min_Max_data_value.c ├── BST.h ├── Balanced_Binary_Tree │ └── AVL_Tree.c ├── Delete_Node.h ├── Leaf_NonLeaf_Level.c ├── Level_order_traversal.c ├── Min_Max_value_n_Delete.c ├── Queue.h ├── Range Sum of BST.java └── implementation.cpp ├── Competitive_Programming ├── Arranging Coins.java ├── Binary Tree Level Order Traversal II.java ├── Game_Time.py ├── Game_of_stones_4.py ├── Knapsack_Problem.cpp ├── Largest Divisible Subset.java ├── Least Number of Unique Integers after K Removals.java ├── Maximum Length of Repeated Subarray.java ├── Maximum Points You Can Obtain from Cards.java ├── Pokemon_1.py ├── SPOJ - MMASS.cpp ├── Sort Characters By Frequency.java ├── Sort Colors.java ├── Stepping_stones_3.py ├── cadet_vs_Lecturer.py └── spoj - AGGRCOW.cpp ├── Graphs ├── AdjLinked_List_Implementation.c ├── Bellman ford algorithm.cpp ├── DetectCycleInADirectedGraph.cpp └── graph_topological_dfs.cpp ├── LICENSE ├── Linked_List ├── 11_Reverse.c ├── 11_Reverse_Recursion.c ├── 12_Stack_n_Queue.c ├── 14_LENGHT.c ├── 1_Count.c ├── 2_GetNth.c ├── 3.1_Delete_list.c ├── 3.2_InsertNth.c ├── 4_SortedInsert.c ├── 6_Append.c ├── 7_FrontBackSplit.c ├── 7_print_lots.c ├── 8_RemoveDuplicates.c ├── Implementation.cpp ├── Linked_List.c ├── cll.cpp ├── dll.cpp ├── input.txt └── input2.txt ├── Queue ├── dequeue.c ├── dispqueue.c └── enqueue.c ├── README.md ├── Stacks └── Implementing_two_stack_in_one_array.c ├── _config.yml └── media └── Data_Structure_n_Algorithms.png /Algorithms/Finding_prime_in_sqrt(n) .c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Algorithms/Finding_prime_in_sqrt(n) .c -------------------------------------------------------------------------------- /Algorithms/Sieve_Of_Erastothenes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Algorithms/Sieve_Of_Erastothenes.c -------------------------------------------------------------------------------- /Algorithms/sparse_matrix_representation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Algorithms/sparse_matrix_representation.c -------------------------------------------------------------------------------- /Algorithms/square_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Algorithms/square_root.c -------------------------------------------------------------------------------- /Array_Problems/10_Element_odd_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/10_Element_odd_times.c -------------------------------------------------------------------------------- /Array_Problems/11_printRepeating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/11_printRepeating.c -------------------------------------------------------------------------------- /Array_Problems/1_Common_Elements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/1_Common_Elements.c -------------------------------------------------------------------------------- /Array_Problems/1_Duplicate_Num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/1_Duplicate_Num.c -------------------------------------------------------------------------------- /Array_Problems/1_Missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/1_Missing.c -------------------------------------------------------------------------------- /Array_Problems/1_Recursive_Even_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/1_Recursive_Even_num.c -------------------------------------------------------------------------------- /Array_Problems/2_First_Duplicate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/2_First_Duplicate.c -------------------------------------------------------------------------------- /Array_Problems/2_Iterative_Even_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/2_Iterative_Even_num.c -------------------------------------------------------------------------------- /Array_Problems/2_Strictly_smaller_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/2_Strictly_smaller_num.c -------------------------------------------------------------------------------- /Array_Problems/2a_First_NonRepeating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/2a_First_NonRepeating.c -------------------------------------------------------------------------------- /Array_Problems/2b_Smallest_Num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/2b_Smallest_Num.c -------------------------------------------------------------------------------- /Array_Problems/3_Non_Recursive_Fib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/3_Non_Recursive_Fib.c -------------------------------------------------------------------------------- /Array_Problems/3_Sum_Recursive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/3_Sum_Recursive.c -------------------------------------------------------------------------------- /Array_Problems/3_Sum_k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/3_Sum_k.c -------------------------------------------------------------------------------- /Array_Problems/3_arrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/3_arrange.c -------------------------------------------------------------------------------- /Array_Problems/4_Recursive_Sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/4_Recursive_Sum.c -------------------------------------------------------------------------------- /Array_Problems/4_Sum_closestToZero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/4_Sum_closestToZero.c -------------------------------------------------------------------------------- /Array_Problems/4_num_of_Zeros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/4_num_of_Zeros.c -------------------------------------------------------------------------------- /Array_Problems/4_sum_equal_zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/4_sum_equal_zero.c -------------------------------------------------------------------------------- /Array_Problems/5_Duplicates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/5_Duplicates.c -------------------------------------------------------------------------------- /Array_Problems/5_Max_Repeating.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/5_Max_Repeating.c -------------------------------------------------------------------------------- /Array_Problems/5a_Iterative_Sum_of_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/5a_Iterative_Sum_of_digit.c -------------------------------------------------------------------------------- /Array_Problems/5b_Recursive_Sum_of_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/5b_Recursive_Sum_of_digit.c -------------------------------------------------------------------------------- /Array_Problems/6_Maximum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/6_Maximum.c -------------------------------------------------------------------------------- /Array_Problems/6_Recursion_Fib_N_Calls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/6_Recursion_Fib_N_Calls.c -------------------------------------------------------------------------------- /Array_Problems/6_Strictly_greater_num.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/6_Strictly_greater_num.c -------------------------------------------------------------------------------- /Array_Problems/6_remove_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/6_remove_element.c -------------------------------------------------------------------------------- /Array_Problems/7_Num_of_occurrence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/7_Num_of_occurrence.c -------------------------------------------------------------------------------- /Array_Problems/7_Recursive_Binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/7_Recursive_Binary.c -------------------------------------------------------------------------------- /Array_Problems/7_Repeating_k_times.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/7_Repeating_k_times.c -------------------------------------------------------------------------------- /Array_Problems/8_Row_with_Max_0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/8_Row_with_Max_0.c -------------------------------------------------------------------------------- /Array_Problems/8a_Trivial_GCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/8a_Trivial_GCD.c -------------------------------------------------------------------------------- /Array_Problems/8b_Euclidean_GCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/8b_Euclidean_GCD.c -------------------------------------------------------------------------------- /Array_Problems/9_Missing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/9_Missing.c -------------------------------------------------------------------------------- /Array_Problems/Maximum-Sum-Subarray-[Kadanes-Algorithm]: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/Maximum-Sum-Subarray-[Kadanes-Algorithm] -------------------------------------------------------------------------------- /Array_Problems/missing_ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/missing_ranges.py -------------------------------------------------------------------------------- /Array_Problems/spiral_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Array_Problems/spiral_matrix.py -------------------------------------------------------------------------------- /Binary_Tree/1_Binary_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/1_Binary_tree.c -------------------------------------------------------------------------------- /Binary_Tree/2_LookUp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/2_LookUp.c -------------------------------------------------------------------------------- /Binary_Tree/3_Num_of_Nodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/3_Num_of_Nodes.c -------------------------------------------------------------------------------- /Binary_Tree/4_Delete_Node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/4_Delete_Node.c -------------------------------------------------------------------------------- /Binary_Tree/5_Min_Max_data_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/5_Min_Max_data_value.c -------------------------------------------------------------------------------- /Binary_Tree/BST.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/BST.h -------------------------------------------------------------------------------- /Binary_Tree/Balanced_Binary_Tree/AVL_Tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/Balanced_Binary_Tree/AVL_Tree.c -------------------------------------------------------------------------------- /Binary_Tree/Delete_Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/Delete_Node.h -------------------------------------------------------------------------------- /Binary_Tree/Leaf_NonLeaf_Level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/Leaf_NonLeaf_Level.c -------------------------------------------------------------------------------- /Binary_Tree/Level_order_traversal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/Level_order_traversal.c -------------------------------------------------------------------------------- /Binary_Tree/Min_Max_value_n_Delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/Min_Max_value_n_Delete.c -------------------------------------------------------------------------------- /Binary_Tree/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/Queue.h -------------------------------------------------------------------------------- /Binary_Tree/Range Sum of BST.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/Range Sum of BST.java -------------------------------------------------------------------------------- /Binary_Tree/implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Binary_Tree/implementation.cpp -------------------------------------------------------------------------------- /Competitive_Programming/Arranging Coins.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Arranging Coins.java -------------------------------------------------------------------------------- /Competitive_Programming/Binary Tree Level Order Traversal II.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Binary Tree Level Order Traversal II.java -------------------------------------------------------------------------------- /Competitive_Programming/Game_Time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Game_Time.py -------------------------------------------------------------------------------- /Competitive_Programming/Game_of_stones_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Game_of_stones_4.py -------------------------------------------------------------------------------- /Competitive_Programming/Knapsack_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Knapsack_Problem.cpp -------------------------------------------------------------------------------- /Competitive_Programming/Largest Divisible Subset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Largest Divisible Subset.java -------------------------------------------------------------------------------- /Competitive_Programming/Least Number of Unique Integers after K Removals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Least Number of Unique Integers after K Removals.java -------------------------------------------------------------------------------- /Competitive_Programming/Maximum Length of Repeated Subarray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Maximum Length of Repeated Subarray.java -------------------------------------------------------------------------------- /Competitive_Programming/Maximum Points You Can Obtain from Cards.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Maximum Points You Can Obtain from Cards.java -------------------------------------------------------------------------------- /Competitive_Programming/Pokemon_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Pokemon_1.py -------------------------------------------------------------------------------- /Competitive_Programming/SPOJ - MMASS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/SPOJ - MMASS.cpp -------------------------------------------------------------------------------- /Competitive_Programming/Sort Characters By Frequency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Sort Characters By Frequency.java -------------------------------------------------------------------------------- /Competitive_Programming/Sort Colors.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Sort Colors.java -------------------------------------------------------------------------------- /Competitive_Programming/Stepping_stones_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/Stepping_stones_3.py -------------------------------------------------------------------------------- /Competitive_Programming/cadet_vs_Lecturer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/cadet_vs_Lecturer.py -------------------------------------------------------------------------------- /Competitive_Programming/spoj - AGGRCOW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Competitive_Programming/spoj - AGGRCOW.cpp -------------------------------------------------------------------------------- /Graphs/AdjLinked_List_Implementation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Graphs/AdjLinked_List_Implementation.c -------------------------------------------------------------------------------- /Graphs/Bellman ford algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Graphs/Bellman ford algorithm.cpp -------------------------------------------------------------------------------- /Graphs/DetectCycleInADirectedGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Graphs/DetectCycleInADirectedGraph.cpp -------------------------------------------------------------------------------- /Graphs/graph_topological_dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Graphs/graph_topological_dfs.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /Linked_List/11_Reverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/11_Reverse.c -------------------------------------------------------------------------------- /Linked_List/11_Reverse_Recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/11_Reverse_Recursion.c -------------------------------------------------------------------------------- /Linked_List/12_Stack_n_Queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/12_Stack_n_Queue.c -------------------------------------------------------------------------------- /Linked_List/14_LENGHT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/14_LENGHT.c -------------------------------------------------------------------------------- /Linked_List/1_Count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/1_Count.c -------------------------------------------------------------------------------- /Linked_List/2_GetNth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/2_GetNth.c -------------------------------------------------------------------------------- /Linked_List/3.1_Delete_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/3.1_Delete_list.c -------------------------------------------------------------------------------- /Linked_List/3.2_InsertNth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/3.2_InsertNth.c -------------------------------------------------------------------------------- /Linked_List/4_SortedInsert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/4_SortedInsert.c -------------------------------------------------------------------------------- /Linked_List/6_Append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/6_Append.c -------------------------------------------------------------------------------- /Linked_List/7_FrontBackSplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/7_FrontBackSplit.c -------------------------------------------------------------------------------- /Linked_List/7_print_lots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/7_print_lots.c -------------------------------------------------------------------------------- /Linked_List/8_RemoveDuplicates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/8_RemoveDuplicates.c -------------------------------------------------------------------------------- /Linked_List/Implementation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/Implementation.cpp -------------------------------------------------------------------------------- /Linked_List/Linked_List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/Linked_List.c -------------------------------------------------------------------------------- /Linked_List/cll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/cll.cpp -------------------------------------------------------------------------------- /Linked_List/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Linked_List/dll.cpp -------------------------------------------------------------------------------- /Linked_List/input.txt: -------------------------------------------------------------------------------- 1 | 3 2 | 1 3 | 2 4 | 4 5 | 15 6 | 8 7 | 14 -------------------------------------------------------------------------------- /Linked_List/input2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 5 3 | 9 4 | 11 5 | 16 6 | 17 -------------------------------------------------------------------------------- /Queue/dequeue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Queue/dequeue.c -------------------------------------------------------------------------------- /Queue/dispqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Queue/dispqueue.c -------------------------------------------------------------------------------- /Queue/enqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Queue/enqueue.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/README.md -------------------------------------------------------------------------------- /Stacks/Implementing_two_stack_in_one_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/Stacks/Implementing_two_stack_in_one_array.c -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/_config.yml -------------------------------------------------------------------------------- /media/Data_Structure_n_Algorithms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gargarchit/Data_Structure_n_Algorithms/HEAD/media/Data_Structure_n_Algorithms.png --------------------------------------------------------------------------------