├── ClosestPairOfPaoints ├── ConvexHull ├── Data_Structures ├── Queue │ ├── Circular_Liked_List.c │ ├── Queue.js │ ├── Queue.md │ ├── queue(linkedlist).c │ ├── queue.c │ ├── queue.cpp │ └── queue.java ├── Stack │ ├── Stack.md │ ├── reverse_linkedlist(stack).c │ ├── stack(linkedlist).c │ └── stack.cpp ├── datastructures.md ├── sparse_table.cpp ├── trees │ ├── AVL_Tree.c │ ├── FenwickTree.java │ ├── KD-tree.cpp │ ├── RedBlack.java │ ├── SegmentTree.java │ ├── Trees.md │ ├── bst.c │ ├── bst_minmax_insert.c │ ├── fenwick.cpp │ ├── segment_tree.cpp │ └── serachbst.c └── ufds.cpp ├── FordFulkerson ├── Hungarian_Algorithm ├── LCAHLD ├── MinCostDjkstra ├── README.md ├── Search ├── BinarySearch.cs ├── BinarySearch.java ├── BinarySearch.rb ├── BinarySearch.vb ├── C# │ └── BinarySearch.cs ├── C++ │ ├── binary.cpp │ ├── linear.cpp │ └── linear_seach.cpp ├── LinearSearch.vb ├── Python │ ├── Binary.c │ ├── binar_search.py │ ├── binarybinsearch.py │ └── linear_search.py ├── binarySearch.js ├── binarysearch.pl ├── depthFirstSearch.c ├── linear.c ├── linear.java ├── linearSearch.js ├── linearsearch.pl ├── readme.md ├── shortest algorithm.c ├── ternery.java └── ternery_search.cpp ├── Sort ├── BubbleSort.cs ├── BubbleSort.vb ├── Bubblesort.java ├── C++ │ ├── bubbleSort.cpp │ ├── insertionSort.cpp │ ├── lexicological_sort.cpp │ ├── mergeSort.cpp │ ├── quicksort.cpp │ ├── radixSort.cpp │ ├── selectionSort.cpp │ └── topologicalSort.cpp ├── C │ ├── Selection. c │ ├── heapSort.c │ ├── mergeSort.c │ └── sleepSort.c ├── CountingSort.cs ├── Java │ ├── Insertion_Sort.java │ └── radixsort.java ├── Python │ ├── bogo_sort.py │ ├── bubble_sort.py │ ├── bubblesort.py │ ├── heapsorting1.py │ ├── insertion_sort.py │ ├── merge_sort.py │ ├── quick_sort.py │ ├── radix_sort.py │ └── selection_sort.py ├── QuickSort.cs ├── README.md ├── Ruby │ ├── bubble_sort.rb │ └── merge_sort.rb ├── binarySearch.js ├── bubble ├── bubbleSort.java ├── bucket_sort.cpp ├── counting_sort.c ├── heap sort.c ├── merge_sort.c ├── selection sort └── sorting_date.c ├── UkkonenSuffixTree ├── bubble_sort ├── naman.txt ├── quickSort ├── selection_sort └── shubhamkes.txt /ClosestPairOfPaoints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/ClosestPairOfPaoints -------------------------------------------------------------------------------- /ConvexHull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/ConvexHull -------------------------------------------------------------------------------- /Data_Structures/Queue/Circular_Liked_List.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Queue/Circular_Liked_List.c -------------------------------------------------------------------------------- /Data_Structures/Queue/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Queue/Queue.js -------------------------------------------------------------------------------- /Data_Structures/Queue/Queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Queue/Queue.md -------------------------------------------------------------------------------- /Data_Structures/Queue/queue(linkedlist).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Queue/queue(linkedlist).c -------------------------------------------------------------------------------- /Data_Structures/Queue/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Queue/queue.c -------------------------------------------------------------------------------- /Data_Structures/Queue/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Queue/queue.cpp -------------------------------------------------------------------------------- /Data_Structures/Queue/queue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Queue/queue.java -------------------------------------------------------------------------------- /Data_Structures/Stack/Stack.md: -------------------------------------------------------------------------------- 1 | Update this file also. 2 | write aout trees 3 | -------------------------------------------------------------------------------- /Data_Structures/Stack/reverse_linkedlist(stack).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Stack/reverse_linkedlist(stack).c -------------------------------------------------------------------------------- /Data_Structures/Stack/stack(linkedlist).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Stack/stack(linkedlist).c -------------------------------------------------------------------------------- /Data_Structures/Stack/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/Stack/stack.cpp -------------------------------------------------------------------------------- /Data_Structures/datastructures.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data_Structures/sparse_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/sparse_table.cpp -------------------------------------------------------------------------------- /Data_Structures/trees/AVL_Tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/AVL_Tree.c -------------------------------------------------------------------------------- /Data_Structures/trees/FenwickTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/FenwickTree.java -------------------------------------------------------------------------------- /Data_Structures/trees/KD-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/KD-tree.cpp -------------------------------------------------------------------------------- /Data_Structures/trees/RedBlack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/RedBlack.java -------------------------------------------------------------------------------- /Data_Structures/trees/SegmentTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/SegmentTree.java -------------------------------------------------------------------------------- /Data_Structures/trees/Trees.md: -------------------------------------------------------------------------------- 1 | Update this file also. 2 | write aout trees 3 | -------------------------------------------------------------------------------- /Data_Structures/trees/bst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/bst.c -------------------------------------------------------------------------------- /Data_Structures/trees/bst_minmax_insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/bst_minmax_insert.c -------------------------------------------------------------------------------- /Data_Structures/trees/fenwick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/fenwick.cpp -------------------------------------------------------------------------------- /Data_Structures/trees/segment_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/segment_tree.cpp -------------------------------------------------------------------------------- /Data_Structures/trees/serachbst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/trees/serachbst.c -------------------------------------------------------------------------------- /Data_Structures/ufds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Data_Structures/ufds.cpp -------------------------------------------------------------------------------- /FordFulkerson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/FordFulkerson -------------------------------------------------------------------------------- /Hungarian_Algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Hungarian_Algorithm -------------------------------------------------------------------------------- /LCAHLD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/LCAHLD -------------------------------------------------------------------------------- /MinCostDjkstra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/MinCostDjkstra -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Algorithms 2 | ##Searching, Sorting & Data Structures 3 | -------------------------------------------------------------------------------- /Search/BinarySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/BinarySearch.cs -------------------------------------------------------------------------------- /Search/BinarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/BinarySearch.java -------------------------------------------------------------------------------- /Search/BinarySearch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/BinarySearch.rb -------------------------------------------------------------------------------- /Search/BinarySearch.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/BinarySearch.vb -------------------------------------------------------------------------------- /Search/C#/BinarySearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/C#/BinarySearch.cs -------------------------------------------------------------------------------- /Search/C++/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/C++/binary.cpp -------------------------------------------------------------------------------- /Search/C++/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/C++/linear.cpp -------------------------------------------------------------------------------- /Search/C++/linear_seach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/C++/linear_seach.cpp -------------------------------------------------------------------------------- /Search/LinearSearch.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/LinearSearch.vb -------------------------------------------------------------------------------- /Search/Python/Binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/Python/Binary.c -------------------------------------------------------------------------------- /Search/Python/binar_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/Python/binar_search.py -------------------------------------------------------------------------------- /Search/Python/binarybinsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/Python/binarybinsearch.py -------------------------------------------------------------------------------- /Search/Python/linear_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/Python/linear_search.py -------------------------------------------------------------------------------- /Search/binarySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/binarySearch.js -------------------------------------------------------------------------------- /Search/binarysearch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/binarysearch.pl -------------------------------------------------------------------------------- /Search/depthFirstSearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/depthFirstSearch.c -------------------------------------------------------------------------------- /Search/linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/linear.c -------------------------------------------------------------------------------- /Search/linear.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/linear.java -------------------------------------------------------------------------------- /Search/linearSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/linearSearch.js -------------------------------------------------------------------------------- /Search/linearsearch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/linearsearch.pl -------------------------------------------------------------------------------- /Search/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/readme.md -------------------------------------------------------------------------------- /Search/shortest algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/shortest algorithm.c -------------------------------------------------------------------------------- /Search/ternery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/ternery.java -------------------------------------------------------------------------------- /Search/ternery_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Search/ternery_search.cpp -------------------------------------------------------------------------------- /Sort/BubbleSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/BubbleSort.cs -------------------------------------------------------------------------------- /Sort/BubbleSort.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/BubbleSort.vb -------------------------------------------------------------------------------- /Sort/Bubblesort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Bubblesort.java -------------------------------------------------------------------------------- /Sort/C++/bubbleSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/bubbleSort.cpp -------------------------------------------------------------------------------- /Sort/C++/insertionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/insertionSort.cpp -------------------------------------------------------------------------------- /Sort/C++/lexicological_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/lexicological_sort.cpp -------------------------------------------------------------------------------- /Sort/C++/mergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/mergeSort.cpp -------------------------------------------------------------------------------- /Sort/C++/quicksort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/quicksort.cpp -------------------------------------------------------------------------------- /Sort/C++/radixSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/radixSort.cpp -------------------------------------------------------------------------------- /Sort/C++/selectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/selectionSort.cpp -------------------------------------------------------------------------------- /Sort/C++/topologicalSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C++/topologicalSort.cpp -------------------------------------------------------------------------------- /Sort/C/Selection. c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C/Selection. c -------------------------------------------------------------------------------- /Sort/C/heapSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C/heapSort.c -------------------------------------------------------------------------------- /Sort/C/mergeSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C/mergeSort.c -------------------------------------------------------------------------------- /Sort/C/sleepSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/C/sleepSort.c -------------------------------------------------------------------------------- /Sort/CountingSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/CountingSort.cs -------------------------------------------------------------------------------- /Sort/Java/Insertion_Sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Java/Insertion_Sort.java -------------------------------------------------------------------------------- /Sort/Java/radixsort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Java/radixsort.java -------------------------------------------------------------------------------- /Sort/Python/bogo_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/bogo_sort.py -------------------------------------------------------------------------------- /Sort/Python/bubble_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/bubble_sort.py -------------------------------------------------------------------------------- /Sort/Python/bubblesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/bubblesort.py -------------------------------------------------------------------------------- /Sort/Python/heapsorting1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/heapsorting1.py -------------------------------------------------------------------------------- /Sort/Python/insertion_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/insertion_sort.py -------------------------------------------------------------------------------- /Sort/Python/merge_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/merge_sort.py -------------------------------------------------------------------------------- /Sort/Python/quick_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/quick_sort.py -------------------------------------------------------------------------------- /Sort/Python/radix_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/radix_sort.py -------------------------------------------------------------------------------- /Sort/Python/selection_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Python/selection_sort.py -------------------------------------------------------------------------------- /Sort/QuickSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/QuickSort.cs -------------------------------------------------------------------------------- /Sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/README.md -------------------------------------------------------------------------------- /Sort/Ruby/bubble_sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Ruby/bubble_sort.rb -------------------------------------------------------------------------------- /Sort/Ruby/merge_sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/Ruby/merge_sort.rb -------------------------------------------------------------------------------- /Sort/binarySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/binarySearch.js -------------------------------------------------------------------------------- /Sort/bubble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/bubble -------------------------------------------------------------------------------- /Sort/bubbleSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/bubbleSort.java -------------------------------------------------------------------------------- /Sort/bucket_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/bucket_sort.cpp -------------------------------------------------------------------------------- /Sort/counting_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/counting_sort.c -------------------------------------------------------------------------------- /Sort/heap sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/heap sort.c -------------------------------------------------------------------------------- /Sort/merge_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/merge_sort.c -------------------------------------------------------------------------------- /Sort/selection sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/selection sort -------------------------------------------------------------------------------- /Sort/sorting_date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/Sort/sorting_date.c -------------------------------------------------------------------------------- /UkkonenSuffixTree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/UkkonenSuffixTree -------------------------------------------------------------------------------- /bubble_sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/bubble_sort -------------------------------------------------------------------------------- /naman.txt: -------------------------------------------------------------------------------- 1 | Name: Naman Sharma 2 | class: MCA 3 | Mobile no:8962743393 4 | -------------------------------------------------------------------------------- /quickSort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/quickSort -------------------------------------------------------------------------------- /selection_sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/selection_sort -------------------------------------------------------------------------------- /shubhamkes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aryanhimanshu/Algorithms/HEAD/shubhamkes.txt --------------------------------------------------------------------------------