├── .DS_Store ├── .gitignore ├── Algorithms ├── .DS_Store ├── Arrays │ ├── Bubble_sort │ │ └── SortBubble.java │ ├── Kadane │ │ ├── Kadane_algo.java │ │ ├── cpp-kadane'salgorithm-O(n)-2.cpp │ │ ├── kadane.py │ │ ├── kadane_algo.cpp │ │ └── kadane_algo.py │ ├── MatrixRotation │ │ └── matRotate.py │ ├── Mazepath │ │ └── mazepath.java │ ├── Subsequence │ │ ├── print_subsequence.cpp │ │ └── print_subsequence.py │ └── kthSmallestElement │ │ └── kthSmall.py ├── Dynamic Programming │ ├── 0-1_Knapsack_Problem.py │ ├── Fractional_Knapsack_Problem.cpp │ ├── Fractional_Knapsack_Problem.java │ ├── Knapsack_with_repitition.cpp │ ├── Longest Common Subsequence │ │ └── CPP │ │ │ └── longestCommonSubseq.cpp │ ├── Longest Common Substring │ │ └── CPP │ │ │ └── longestCommonSubstring.cpp │ ├── Longest Increasing Subsequence │ │ └── CPP │ │ │ ├── LongestIncreasingSubsequence.java │ │ │ └── longestIncreasingSubsequence.cpp │ ├── MakeChange.java │ ├── MatrixChainMultiplication.java │ ├── edit_distance.py │ ├── fractional_knapsack.c │ ├── fractional_knapsack.py │ ├── generate_parentheses │ │ └── generate_parentheses.py │ ├── longest_common_subsequence.py │ ├── longest_sum_subarray │ │ └── python │ │ │ ├── kadane.py │ │ │ └── readme.md │ ├── minimum_number_of_jumps │ │ └── python │ │ │ ├── minjumps.py │ │ │ └── readme.md │ └── rod_cutting_problem.py ├── Greedy Algorithm │ ├── Activity_Selection_Problem.py │ ├── Egyptian Fraction.cpp │ ├── Fractional_Knapsack_Problem.cpp │ ├── README.md │ └── Travelling_Salesman_Problem.cpp ├── Kadane.cpp ├── LPS_O(n) ├── Maths │ ├── .DS_Store │ ├── Base Conversion │ │ ├── C │ │ │ └── base_conversion.c │ │ └── binary_number │ │ │ ├── check_multple_of3.c │ │ │ └── readme.md │ ├── Catalan number │ │ ├── catalan_no.c │ │ └── catalan_num.py │ ├── Chinese_Remainder_Theorem │ │ ├── .DS_Store │ │ └── CPP │ │ │ └── chinese_remainder_theorem.cpp │ ├── Computational Geometry │ │ ├── .DS_Store │ │ ├── Python │ │ │ └── COMPUTATIONAL_GEOMETRY.py │ │ └── README.md │ ├── Euclidean GCD │ │ ├── C │ │ │ ├── Euclidean_GCD_using_Recursion.c │ │ │ ├── GCD.c │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── euclidean_gcd.cpp │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── EuclideanGCD.java │ │ │ └── readme.md │ │ ├── Python │ │ │ ├── euclidean_gcd.py │ │ │ └── readme.md │ │ └── README.md │ ├── Factorial │ │ ├── Java │ │ │ └── Factorial.java │ │ ├── README.md │ │ ├── cpp │ │ │ └── factorial.cpp │ │ └── python │ │ │ └── factorial.py │ ├── Fibonacci series │ │ ├── BASH │ │ │ └── Fibonacci.sh │ │ ├── C │ │ │ ├── Fibonacci_series.c │ │ │ ├── a.out │ │ │ ├── mycode.c │ │ │ ├── n_terms_fibonacci.c │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── Fibonacci_DP.cpp │ │ │ ├── fibonacci_series.cpp │ │ │ ├── opt_fibonacci_no.cpp │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── Fibonacci.java │ │ │ └── readme.md │ │ ├── Python │ │ │ ├── Fibonacci_Sequence.py │ │ │ ├── Fibonnacci.py │ │ │ └── readme.md │ │ └── README.md │ ├── Magic Number │ │ ├── Magic Number.py │ │ ├── MagicNo.py │ │ ├── MagicNumber.java │ │ ├── Nodejs │ │ │ └── MagicNumber.js │ │ ├── magic_number.c │ │ └── magic_number.cpp │ ├── Modular Exponentiation │ │ ├── C │ │ │ ├── ModularExponentiation.c │ │ │ └── README.md │ │ ├── CPP │ │ │ └── ModularExponentiation.cpp │ │ ├── Java │ │ │ ├── ModularExponentiation.java │ │ │ └── README.md │ │ └── Python │ │ │ ├── ModularExponentiation.py │ │ │ └── README.md │ ├── Pallindrome number │ │ ├── C │ │ │ ├── Palindrome.c │ │ │ ├── palindrome_number.c │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── palindrome.cpp │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── PallindromeNumber.java │ │ │ ├── Pallindrome_number.java │ │ │ ├── Pallindrome_string.java │ │ │ ├── palindrome.java │ │ │ └── readme.md │ │ ├── Python │ │ │ ├── Palindrome.py │ │ │ ├── Pallindrome_number.py │ │ │ └── readme.md │ │ └── README.md │ ├── Perfect Number │ │ ├── .DS_Store │ │ ├── C │ │ │ ├── PerfectNumber.c │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── perfectnumber.cpp │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── PerfectNumber.java │ │ │ └── readme.md │ │ ├── Python │ │ │ ├── Perfect_Number.py │ │ │ ├── perfect.py │ │ │ └── readme.md │ │ ├── README.md │ │ ├── a.out │ │ ├── perfect number.c │ │ ├── perfect_num.cpp │ │ └── perfectno.cpp │ ├── Perfect number │ │ ├── C │ │ │ ├── PerfectNumber.c │ │ │ ├── perfect_number.c │ │ │ └── readme.md │ │ ├── CPP │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── PerfectNumber.java │ │ │ └── readme.md │ │ └── Python │ │ │ ├── Perfect_Number.py │ │ │ └── readme.md │ ├── Polite number │ │ ├── polite_number.cpp │ │ ├── polite_number.java │ │ └── polite_number.py │ ├── README.md │ ├── Sieve Eratosthenes │ │ └── CPP │ │ │ ├── SieveEratosthenes.cpp │ │ │ └── sieve │ ├── Sieve of Eratosthenes algorithm │ │ ├── README.md │ │ ├── cpp │ │ │ └── Sieve of Eratosthenes algorithm.cpp │ │ ├── java │ │ │ └── Sieve ofEratosthenes algorithm.java │ │ ├── sieve.c │ │ └── sieve.py │ ├── armstrong-number │ │ ├── README.md │ │ ├── armstrong-number.cpp │ │ └── armstrong-number.py │ ├── factorial │ │ ├── factorial.cpp │ │ └── factorial.py │ └── pure numbers │ │ └── pure_numbers.cpp ├── Recursion │ ├── palindrome │ │ ├── palindrome.cpp │ │ ├── palindrome.java │ │ └── palindrome.py │ └── tower_of_hanoi.c ├── Searching & Sorting │ ├── .DS_Store │ ├── Binary Search │ │ ├── Binary_Burbble_Search.cpp │ │ ├── Binary_Search.py │ │ ├── C │ │ │ ├── binary_search.c │ │ │ └── binary_search_iter.c │ │ ├── CPP │ │ │ ├── BinarySearchRecursive.cpp │ │ │ └── Binary_Search_Iter_Recur.cpp │ │ ├── README.md │ │ ├── Ruby │ │ │ └── binary_search.rb │ │ ├── a.out │ │ ├── binary_Search_Iterative.cpp │ │ ├── binary_search.java │ │ ├── binary_search_iter.c │ │ ├── binary_search_iterative.py │ │ └── binary_search_iterative_recursive.java │ ├── Bogo Sort │ │ ├── bogo.py │ │ ├── bogosort.py │ │ └── sort.py │ ├── Breadth-First-Search.cs │ ├── Bubble Sort in Java │ │ └── BubbleSort.java │ ├── Bubble Sort │ │ ├── .DS_Store │ │ ├── BubbleSort.java │ │ ├── BubbleSort.py │ │ ├── Bubble_sort.c │ │ ├── Bubble_sort.cpp │ │ ├── Bubblesort.java │ │ ├── README.md │ │ ├── bubbleSort.cpp │ │ ├── bubbleSort.java │ │ ├── bubble_sort.c │ │ ├── bubble_sort.cs │ │ ├── bubble_sort.java │ │ └── bubble_sort.py │ ├── BucketSort.cpp │ ├── Counting Sort │ │ ├── Counting Sort.cpp │ │ ├── Java │ │ │ └── CountingSort.java │ │ ├── Python │ │ │ ├── counting-sort.py │ │ │ └── counting_sort.py │ │ ├── README.md │ │ ├── Ruby │ │ │ └── Counting_sort.rb │ │ └── countingsort.py │ ├── Depth First Search │ │ ├── DFS.java │ │ └── depth_first_search.cpp │ ├── Exponential Search │ │ └── exponential_search.py │ ├── Fibonacii Search │ │ ├── fibinacci_search.py │ │ └── fibonacci_search.cpp │ ├── Heap Sort │ │ ├── .DS_Store │ │ ├── HeapSort.java │ │ ├── Heapsort.c │ │ ├── README.md │ │ ├── heap_sort.c │ │ └── heap_sort.cpp │ ├── Insertion Sort │ │ ├── .DS_Store │ │ ├── C++ │ │ │ └── InsertionSort.cpp │ │ ├── C │ │ │ └── insertion_sort.c │ │ ├── Insertion-Sort.c │ │ ├── Java │ │ │ └── InsertionSort.java │ │ ├── Python │ │ │ ├── .DS_Store │ │ │ └── InsertionSort.py │ │ ├── README.md │ │ ├── insertion sort.cpp │ │ ├── insertion_sort.cpp │ │ ├── insertion_sort.py │ │ └── insertion_sort_python.py │ ├── Interpolation Search │ │ └── interpolation_search.py │ ├── Jump Search │ │ └── jump_search.py │ ├── Linear Search │ │ ├── LinearSearch.java │ │ ├── Linear_search.py │ │ ├── README.md │ │ ├── linear_search.c │ │ └── linearsearch.java │ ├── Merge Sort │ │ ├── MergeSort.java │ │ ├── MergeSort.py │ │ ├── README.md │ │ ├── mergeSort.cpp │ │ └── merge_sort.c │ ├── Pancake Sort │ │ └── pancakesort.py │ ├── PigeonHole Sort │ │ └── piegonhole.sort │ ├── QuickSort │ │ ├── .DS_Store │ │ ├── QuickSort.py │ │ ├── QuickSort_2.py │ │ ├── README.md │ │ ├── quickSort.cpp │ │ ├── quickSort.java │ │ ├── quick_sort.c │ │ └── quick_sort.py │ ├── README.md │ ├── Radix Sort │ │ ├── README.md │ │ ├── Radix_Sort.cpp │ │ ├── Radixsort.py │ │ └── radix_sort.c │ ├── Selection Sort │ │ ├── .DS_Store │ │ ├── C++ │ │ │ └── SelectionSort.cpp │ │ ├── C │ │ │ ├── .DS_Store │ │ │ └── selectionsort.c │ │ ├── Java │ │ │ └── SelectionSort.java │ │ ├── Python │ │ │ ├── .DS_Store │ │ │ └── SelectionSort.py │ │ └── selectionsort.cpp │ ├── Shell Sort │ │ ├── .DS_Store │ │ ├── ShellSort.java │ │ ├── shellsort.cpp │ │ └── shellsort.py │ ├── Time Sort │ │ └── timsort.cpp │ └── shell sort │ │ └── shell_sort.cpp ├── String │ ├── .DS_Store │ ├── BoyerMoore │ │ └── BoyerMoore.c │ ├── KMP │ │ └── CPP │ │ │ └── KMP.cpp │ ├── NaiveString │ │ └── NaiveSearch.java │ ├── RabinKarp │ │ └── RabinKarp.c │ ├── StringReverse │ │ └── strRev.py │ ├── Sum of Subset │ │ └── sumofsubset.py │ ├── dnapatternmatching │ │ ├── dnapattern.py │ │ └── readme.md │ └── run-length-encoding │ │ ├── readme.md │ │ └── rle.c ├── Tree │ └── printLeafNodes │ │ └── cpp │ │ └── Print all leaf nodes of a Binary Tree from left to right.cpp ├── divide_and_conquer │ ├── divide_and_conquer.py │ └── readme.md ├── largest_sum_of_alternate.md └── largest_sum_of_alternate.py ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ClassicalQuestions.md ├── Company Specific Interview Questions ├── .DS_Store ├── Airbnb │ ├── .DS_Store │ ├── Questions │ │ ├── AddStrings.md │ │ ├── AddTwoNumbers.md │ │ ├── BinarySearchTree.md │ │ ├── HappyNumber.md │ │ ├── MergeSort.md │ │ ├── MiniParser.md │ │ ├── RegularExpression.md │ │ ├── SingleNumber.md │ │ ├── TwoSum.md │ │ └── Validparentheses.md │ ├── README.md │ └── Solutions │ │ ├── .DS_Store │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ ├── BinarySearchTree.cpp │ │ ├── MergeSort.cpp │ │ ├── README.md │ │ ├── TwoSum.cpp │ │ ├── Validparentheses.cpp │ │ └── twoSum.cpp │ │ ├── Java │ │ ├── README.md │ │ ├── TwoSum.java │ │ └── ValidParantheses.Java │ │ └── Python │ │ ├── README.md │ │ └── TwoSum.py ├── Amazon │ ├── .DS_Store │ ├── README.md │ └── Solutions │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ ├── README.md │ │ ├── merge_without_extra_space.c │ │ └── solve_sudoku │ │ ├── Java │ │ ├── LowestCommonAncestor.java │ │ └── README.md │ │ └── Python │ │ └── README.md ├── Apple │ ├── .DS_Store │ ├── README.md │ └── Solutions │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ └── README.md │ │ ├── Java │ │ └── README.md │ │ └── Python │ │ └── README.md ├── Dropbox │ ├── .DS_Store │ ├── README.md │ └── Solutions │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ └── README.md │ │ ├── Java │ │ └── README.md │ │ └── Python │ │ └── README.md ├── Facebook │ ├── .DS_Store │ ├── README.md │ └── Solutions │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ └── README.md │ │ ├── Java │ │ └── README.md │ │ └── Python │ │ └── README.md ├── Google │ ├── .DS_Store │ ├── Questions │ │ ├── Counting in BST.md │ │ ├── Egg Drop.md │ │ ├── Find the Odds.md │ │ ├── Get and Set.md │ │ ├── Jump Num.md │ │ ├── Max Dif.md │ │ ├── Sum to Num S.md │ │ ├── Triplet check.md │ │ ├── Valid.md │ │ └── Word Sequence.md │ ├── README.md │ └── Solutions │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ ├── DNA.cpp │ │ ├── README.md │ │ └── Word_Break.cpp │ │ ├── Java │ │ └── README.md │ │ └── Python │ │ ├── README.md │ │ ├── google_find_odds.md │ │ ├── google_find_odds.py │ │ ├── valid.md │ │ └── valid.py ├── Microsoft │ ├── .DS_Store │ ├── README.md │ └── Solutions │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ └── README.md │ │ ├── Java │ │ └── README.md │ │ └── Python │ │ └── README.md ├── Stripe │ ├── .DS_Store │ ├── README.md │ └── Solutions │ │ ├── C │ │ └── README.md │ │ ├── Cpp │ │ └── README.md │ │ ├── Java │ │ └── README.md │ │ └── Python │ │ └── README.md └── Uber │ ├── .DS_Store │ ├── README.md │ └── Solutions │ ├── C │ └── README.md │ ├── Cpp │ └── README.md │ ├── Java │ └── README.md │ └── Python │ └── README.md ├── Data Structures ├── .DS_Store ├── AES │ └── AES.java ├── AVL Tree │ ├── Avl.py │ ├── Avltree.py │ ├── avl.c │ ├── avl.cpp │ └── avl.java ├── Adjacency matrix │ ├── C │ │ └── readme.md │ ├── CPP │ │ └── readme.md │ ├── Java │ │ └── readme.md │ └── Python │ │ ├── adjacency_matrix.py │ │ └── readme.md ├── Backtracking │ └── N-queen-problem.cpp ├── Circular Linked List │ ├── C │ │ └── readme.md │ ├── CPP │ │ └── readme.md │ ├── Java │ │ ├── CircularSinglyLinkedList.java │ │ └── readme.md │ └── Python │ │ ├── circular_linked_list.py │ │ ├── circularlinkedlist.py │ │ └── readme.md ├── Circular Queue │ └── C │ │ └── circular-queue.c ├── Deque │ └── Python │ │ └── deque.py ├── Disjoint Sets │ ├── C │ │ └── readme.md │ ├── CPP │ │ ├── disjoint_sets.cpp │ │ └── readme.md │ ├── Java │ │ ├── DisjointSets.java │ │ └── readme.md │ └── Python │ │ ├── DisjointSets.py │ │ └── readme.md ├── Doubly Linked List │ ├── C │ │ ├── Doubly linked list.c │ │ ├── doubly_linked_list.c │ │ └── readme.md │ ├── CPP │ │ ├── doublyLL.cpp │ │ └── readme.md │ ├── Java │ │ ├── Doubly Linked List.java │ │ └── readme.md │ └── Python │ │ ├── doubly_linked_list.py │ │ └── readme.md ├── Dynamic Array │ ├── C │ │ ├── dynamic_array.c │ │ └── readme.md │ ├── CPP │ │ ├── dynamic_array.cpp │ │ └── readme.md │ ├── Java │ │ ├── DynamicArray.java │ │ └── readme.md │ └── Python │ │ ├── dynamic_array.py │ │ └── readme.md ├── Fibonacci Heap │ ├── .DS_Store │ ├── C │ │ ├── Fibbonacci.c │ │ └── readme.md │ ├── CPP │ │ └── readme.md │ ├── Java │ │ └── readme.md │ └── Python │ │ ├── FibonacciHeap.py │ │ ├── fibonacci.py │ │ └── readme.md ├── Graph Traversal │ ├── .DS_Store │ ├── Bellman Ford Algorithm │ │ ├── README.md │ │ ├── bellman_ford_algorithm.cpp │ │ └── bellmanford.py │ ├── Breadth First Search │ │ ├── BreadthFirstSearch.py │ │ ├── README.md │ │ ├── bfs.c │ │ └── bfs.cpp │ ├── Depth First Search │ │ ├── DepthFirstSearch.py │ │ ├── README.md │ │ ├── dfs.c │ │ ├── dfs.cpp │ │ ├── dfs.java │ │ └── dfs.py │ ├── Dijkstra's Algorithm │ │ ├── README.md │ │ └── dijkstras_algorithm.cpp │ ├── Floyd-Warshall Algorithm │ │ ├── README.md │ │ ├── floyd_warshal.java │ │ └── floyd_warshall.cpp │ ├── Kruskals Algorithms │ │ ├── README.md │ │ ├── kruskal_algo.java │ │ └── kruskals_algorithm.cpp │ ├── Prim's Algorithms │ │ ├── Prims.c │ │ └── README.md │ ├── README.md │ └── Topological Sort │ │ └── README.md ├── Graph │ └── C │ │ ├── floydwarshall.c │ │ └── readme.md ├── Graphs │ ├── Belmon Ford Algorithm │ │ ├── C │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── belmonford.c │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── bellman_ford_algo.java │ │ │ └── readme.md │ │ └── Python │ │ │ └── readme.md │ ├── Breadth First Search │ │ ├── C │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── bfs.cpp │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── BreadthFirstSearch.java │ │ │ └── readme.md │ │ └── Python │ │ │ └── readme.md │ ├── Cycle Detection │ │ ├── Directed Graph │ │ │ ├── CPP │ │ │ │ └── cycle_detection_directed.cpp │ │ │ ├── Java │ │ │ │ └── cycle_detection_directed.java │ │ │ └── Python │ │ │ │ └── cycle_detection_directed.py │ │ └── Undirected Graph │ │ │ ├── C │ │ │ └── cycle_detection_undirected.c │ │ │ ├── CPP │ │ │ └── cycle_detection_undirected.cpp │ │ │ ├── Java │ │ │ └── cycle_detection_undirected.java │ │ │ └── Python │ │ │ └── cycle_detection_undirected.py │ ├── Depth First Search │ │ ├── C │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── dfs.cpp │ │ │ └── readme.md │ │ ├── Java │ │ │ └── readme.md │ │ └── Python │ │ │ └── readme.md │ ├── Dijkstra's Algorithm │ │ ├── C │ │ │ └── readme.md │ │ ├── CPP │ │ │ └── readme.md │ │ ├── Java │ │ │ ├── Dijkstra.java │ │ │ └── readme.md │ │ └── Python │ │ │ └── readme.md │ ├── Floyd-Warshall Algorithm │ │ ├── C │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── FW.cpp │ │ │ ├── a.out │ │ │ └── readme.md │ │ ├── Java │ │ │ └── readme.md │ │ └── Python │ │ │ ├── floyd.py │ │ │ └── readme.md │ ├── Implementation of BFS using adjacency matrix │ │ └── c++ │ │ │ └── Implementation of BFS using adjacency matrix.cpp │ ├── Kruskal's Algorithm │ │ ├── C │ │ │ ├── kruskals.c │ │ │ └── readme.md │ │ ├── CPP │ │ │ └── readme.md │ │ ├── Java │ │ │ └── readme.md │ │ └── Python │ │ │ └── readme.md │ ├── Prim's Algorithm │ │ ├── C │ │ │ └── readme.md │ │ ├── CPP │ │ │ └── readme.md │ │ ├── Java │ │ │ └── readme.md │ │ └── Python │ │ │ └── readme.md │ ├── Tarjan's algorithm │ │ └── Tarjan.java │ ├── Topological Sort │ │ ├── C │ │ │ └── readme.md │ │ ├── CPP │ │ │ ├── TopologicalSort.cpp │ │ │ └── readme.md │ │ ├── Java │ │ │ └── readme.md │ │ └── Python │ │ │ └── readme.md │ └── ford_fulkerson_maximum_flow │ │ ├── FordFulkersonUsingBfs.java │ │ ├── ford_fulkerson.cpp │ │ ├── ford_fulkerson_using_bfs.cpp │ │ └── ford_fulkerson_using_bfs.py ├── Hash Tables │ ├── C │ │ └── readme.md │ ├── CPP │ │ └── readme.md │ ├── Java │ │ └── readme.md │ └── Python │ │ └── readme.md ├── Heap │ ├── C │ │ ├── heap.c │ │ ├── maxHeap.cpp │ │ └── readme.md │ ├── CPP │ │ ├── heap.cpp │ │ └── readme.md │ ├── Java │ │ ├── Heap.java │ │ └── readme.md │ └── Python │ │ ├── Heap.py │ │ └── readme.md ├── Palindrome │ ├── C_palindrome.c │ ├── Cpp_palindrome.cpp │ ├── Java_palindrome.java │ └── Python_palindrome.py ├── Priority Queue │ ├── C │ │ └── readme.md │ ├── CPP │ │ └── readme.md │ ├── Java │ │ ├── Main.java │ │ └── readme.md │ └── Python │ │ ├── priority_queue.py │ │ └── readme.md ├── Queue │ ├── C │ │ ├── queue.c │ │ └── readme.md │ ├── CPP │ │ ├── Queue.cpp │ │ └── readme.md │ ├── Java │ │ ├── Queue.java │ │ ├── StaticQueueinjava.java │ │ └── readme.md │ ├── Python │ │ ├── Queue.py │ │ ├── queue.py │ │ ├── queueinpy.py │ │ ├── readme.md │ │ └── simple_queue.py │ └── Ruby │ │ └── queue.rb ├── Singly Linked List │ ├── C │ │ ├── readme.md │ │ └── singlylinkedlist.c │ ├── CPP │ │ ├── readme.md │ │ └── singlylinkedlist.cpp │ ├── Java │ │ ├── SinglyLinkedList.java │ │ └── readme.md │ └── Python │ │ ├── SinglyLinkedList.py │ │ ├── linked_list.py │ │ ├── readme.md │ │ └── singly_linked_list.py ├── Stack │ ├── C │ │ ├── dynamic_memory_allocation │ │ │ ├── readme.md │ │ │ └── stack.c │ │ ├── readme.md │ │ ├── stack.c │ │ └── stack2.c │ ├── CPP │ │ ├── Stack.CPP │ │ └── readme.md │ ├── Java │ │ ├── Stack.java │ │ └── readme.md │ └── Python │ │ ├── Stack.py │ │ ├── python_stack_implementation.py │ │ └── readme.md ├── Tree Traversal │ ├── .DS_Store │ ├── AVL Tree │ │ └── README.md │ ├── Binary Search Tree │ │ ├── .DS_Store │ │ ├── BST.py │ │ ├── Python │ │ │ ├── 1.Search.py │ │ │ └── 2.Insert.py │ │ └── README.md │ ├── Depth of the Tree │ │ └── README.md │ ├── Fenwick Tree │ │ ├── README.md │ │ ├── a.out │ │ └── fenwick_tree.cpp │ ├── Height of the Tree │ │ └── README.md │ ├── In-Order Traversal │ │ ├── README.md │ │ ├── inorder.c │ │ ├── inorder.cpp │ │ ├── inorder.js │ │ └── inorder.py │ ├── Lowest Common Ancestor in BST │ │ ├── .DS_Store │ │ └── c │ │ │ └── Lowest Common Ancestor in BST using C++.cpp │ ├── Post-Order Traversal │ │ ├── README.md │ │ ├── postorder.c │ │ ├── postorder.cpp │ │ ├── postorder.js │ │ └── postorder.py │ ├── Pre-Order Traversal │ │ ├── Preorder.py │ │ ├── README.md │ │ ├── preorder.c │ │ ├── preorder.cpp │ │ └── preorder.js │ ├── README.md │ ├── Segment Tree │ │ └── README.md │ ├── Spanning Tree │ │ ├── README.md │ │ └── Tree Traversal - Shortcut.lnk │ ├── Sum of all leaf nodes │ │ └── Sum of all leaf nodes of binary tree in C++.cpp │ ├── Trie │ │ └── README.md │ └── deleteTree │ │ ├── .DS_Store │ │ └── cpp │ │ └── delete a Tree.cpp └── Trie │ ├── Trie.cpp │ ├── Trie.py │ └── trie.java ├── Factorial.c ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/.gitignore -------------------------------------------------------------------------------- /Algorithms/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Arrays/Bubble_sort/SortBubble.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Bubble_sort/SortBubble.java -------------------------------------------------------------------------------- /Algorithms/Arrays/Kadane/Kadane_algo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Kadane/Kadane_algo.java -------------------------------------------------------------------------------- /Algorithms/Arrays/Kadane/cpp-kadane'salgorithm-O(n)-2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Kadane/cpp-kadane'salgorithm-O(n)-2.cpp -------------------------------------------------------------------------------- /Algorithms/Arrays/Kadane/kadane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Kadane/kadane.py -------------------------------------------------------------------------------- /Algorithms/Arrays/Kadane/kadane_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Kadane/kadane_algo.cpp -------------------------------------------------------------------------------- /Algorithms/Arrays/Kadane/kadane_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Kadane/kadane_algo.py -------------------------------------------------------------------------------- /Algorithms/Arrays/MatrixRotation/matRotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/MatrixRotation/matRotate.py -------------------------------------------------------------------------------- /Algorithms/Arrays/Mazepath/mazepath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Mazepath/mazepath.java -------------------------------------------------------------------------------- /Algorithms/Arrays/Subsequence/print_subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Subsequence/print_subsequence.cpp -------------------------------------------------------------------------------- /Algorithms/Arrays/Subsequence/print_subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/Subsequence/print_subsequence.py -------------------------------------------------------------------------------- /Algorithms/Arrays/kthSmallestElement/kthSmall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Arrays/kthSmallestElement/kthSmall.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/0-1_Knapsack_Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/0-1_Knapsack_Problem.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Fractional_Knapsack_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/Fractional_Knapsack_Problem.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Fractional_Knapsack_Problem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/Fractional_Knapsack_Problem.java -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Knapsack_with_repitition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/Knapsack_with_repitition.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Longest Common Subsequence/CPP/longestCommonSubseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/Longest Common Subsequence/CPP/longestCommonSubseq.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Longest Common Substring/CPP/longestCommonSubstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/Longest Common Substring/CPP/longestCommonSubstring.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Longest Increasing Subsequence/CPP/LongestIncreasingSubsequence.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/Longest Increasing Subsequence/CPP/LongestIncreasingSubsequence.java -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/Longest Increasing Subsequence/CPP/longestIncreasingSubsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/Longest Increasing Subsequence/CPP/longestIncreasingSubsequence.cpp -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/MakeChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/MakeChange.java -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/MatrixChainMultiplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/MatrixChainMultiplication.java -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/edit_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/edit_distance.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/fractional_knapsack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/fractional_knapsack.c -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/fractional_knapsack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/fractional_knapsack.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/generate_parentheses/generate_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/generate_parentheses/generate_parentheses.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/longest_common_subsequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/longest_common_subsequence.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/longest_sum_subarray/python/kadane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/longest_sum_subarray/python/kadane.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/longest_sum_subarray/python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/longest_sum_subarray/python/readme.md -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/minimum_number_of_jumps/python/minjumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/minimum_number_of_jumps/python/minjumps.py -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/minimum_number_of_jumps/python/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/minimum_number_of_jumps/python/readme.md -------------------------------------------------------------------------------- /Algorithms/Dynamic Programming/rod_cutting_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Dynamic Programming/rod_cutting_problem.py -------------------------------------------------------------------------------- /Algorithms/Greedy Algorithm/Activity_Selection_Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Greedy Algorithm/Activity_Selection_Problem.py -------------------------------------------------------------------------------- /Algorithms/Greedy Algorithm/Egyptian Fraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Greedy Algorithm/Egyptian Fraction.cpp -------------------------------------------------------------------------------- /Algorithms/Greedy Algorithm/Fractional_Knapsack_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Greedy Algorithm/Fractional_Knapsack_Problem.cpp -------------------------------------------------------------------------------- /Algorithms/Greedy Algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Greedy Algorithm/README.md -------------------------------------------------------------------------------- /Algorithms/Greedy Algorithm/Travelling_Salesman_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Greedy Algorithm/Travelling_Salesman_Problem.cpp -------------------------------------------------------------------------------- /Algorithms/Kadane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Kadane.cpp -------------------------------------------------------------------------------- /Algorithms/LPS_O(n): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/LPS_O(n) -------------------------------------------------------------------------------- /Algorithms/Maths/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Maths/Base Conversion/C/base_conversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Base Conversion/C/base_conversion.c -------------------------------------------------------------------------------- /Algorithms/Maths/Base Conversion/binary_number/check_multple_of3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Base Conversion/binary_number/check_multple_of3.c -------------------------------------------------------------------------------- /Algorithms/Maths/Base Conversion/binary_number/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Base Conversion/binary_number/readme.md -------------------------------------------------------------------------------- /Algorithms/Maths/Catalan number/catalan_no.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Catalan number/catalan_no.c -------------------------------------------------------------------------------- /Algorithms/Maths/Catalan number/catalan_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Catalan number/catalan_num.py -------------------------------------------------------------------------------- /Algorithms/Maths/Chinese_Remainder_Theorem/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Chinese_Remainder_Theorem/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Maths/Chinese_Remainder_Theorem/CPP/chinese_remainder_theorem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Chinese_Remainder_Theorem/CPP/chinese_remainder_theorem.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Computational Geometry/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Computational Geometry/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Maths/Computational Geometry/Python/COMPUTATIONAL_GEOMETRY.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Computational Geometry/Python/COMPUTATIONAL_GEOMETRY.py -------------------------------------------------------------------------------- /Algorithms/Maths/Computational Geometry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Computational Geometry/README.md -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/C/Euclidean_GCD_using_Recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Euclidean GCD/C/Euclidean_GCD_using_Recursion.c -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/C/GCD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Euclidean GCD/C/GCD.c -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/C/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Euclidean GCD/C/readme.md -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/CPP/euclidean_gcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Euclidean GCD/CPP/euclidean_gcd.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/Java/EuclideanGCD.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Euclidean GCD/Java/EuclideanGCD.java -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/Python/euclidean_gcd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Euclidean GCD/Python/euclidean_gcd.py -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Euclidean GCD/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Factorial/Java/Factorial.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Factorial/Java/Factorial.java -------------------------------------------------------------------------------- /Algorithms/Maths/Factorial/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Factorial/cpp/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Factorial/cpp/factorial.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Factorial/python/factorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Factorial/python/factorial.py -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/BASH/Fibonacci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/BASH/Fibonacci.sh -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/C/Fibonacci_series.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/C/Fibonacci_series.c -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/C/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/C/a.out -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/C/mycode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/C/mycode.c -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/C/n_terms_fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/C/n_terms_fibonacci.c -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/CPP/Fibonacci_DP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/CPP/Fibonacci_DP.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/CPP/fibonacci_series.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/CPP/fibonacci_series.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/CPP/opt_fibonacci_no.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/CPP/opt_fibonacci_no.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/CPP/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/CPP/readme.md -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/Java/Fibonacci.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/Java/Fibonacci.java -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/Python/Fibonacci_Sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/Python/Fibonacci_Sequence.py -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/Python/Fibonnacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Fibonacci series/Python/Fibonnacci.py -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Fibonacci series/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Magic Number/Magic Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Magic Number/Magic Number.py -------------------------------------------------------------------------------- /Algorithms/Maths/Magic Number/MagicNo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Magic Number/MagicNo.py -------------------------------------------------------------------------------- /Algorithms/Maths/Magic Number/MagicNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Magic Number/MagicNumber.java -------------------------------------------------------------------------------- /Algorithms/Maths/Magic Number/Nodejs/MagicNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Magic Number/Nodejs/MagicNumber.js -------------------------------------------------------------------------------- /Algorithms/Maths/Magic Number/magic_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Magic Number/magic_number.c -------------------------------------------------------------------------------- /Algorithms/Maths/Magic Number/magic_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Magic Number/magic_number.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Modular Exponentiation/C/ModularExponentiation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Modular Exponentiation/C/ModularExponentiation.c -------------------------------------------------------------------------------- /Algorithms/Maths/Modular Exponentiation/C/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Modular Exponentiation/CPP/ModularExponentiation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Modular Exponentiation/CPP/ModularExponentiation.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Modular Exponentiation/Java/ModularExponentiation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Modular Exponentiation/Java/ModularExponentiation.java -------------------------------------------------------------------------------- /Algorithms/Maths/Modular Exponentiation/Java/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Modular Exponentiation/Python/ModularExponentiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Modular Exponentiation/Python/ModularExponentiation.py -------------------------------------------------------------------------------- /Algorithms/Maths/Modular Exponentiation/Python/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/C/Palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/C/Palindrome.c -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/C/palindrome_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/C/palindrome_number.c -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/CPP/palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/CPP/palindrome.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Java/PallindromeNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/Java/PallindromeNumber.java -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Java/Pallindrome_number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/Java/Pallindrome_number.java -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Java/Pallindrome_string.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/Java/Pallindrome_string.java -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Java/palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/Java/palindrome.java -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Python/Palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/Python/Palindrome.py -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Python/Pallindrome_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Pallindrome number/Python/Pallindrome_number.py -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Pallindrome number/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/C/PerfectNumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/C/PerfectNumber.c -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/CPP/perfectnumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/CPP/perfectnumber.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/Java/PerfectNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/Java/PerfectNumber.java -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/Python/Perfect_Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/Python/Perfect_Number.py -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/Python/perfect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/Python/perfect.py -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/a.out -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/perfect number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/perfect number.c -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/perfect_num.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/perfect_num.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect Number/perfectno.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect Number/perfectno.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/C/PerfectNumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect number/C/PerfectNumber.c -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/C/perfect_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect number/C/perfect_number.c -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/Java/PerfectNumber.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect number/Java/PerfectNumber.java -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/Python/Perfect_Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Perfect number/Python/Perfect_Number.py -------------------------------------------------------------------------------- /Algorithms/Maths/Perfect number/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Polite number/polite_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Polite number/polite_number.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Polite number/polite_number.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Polite number/polite_number.java -------------------------------------------------------------------------------- /Algorithms/Maths/Polite number/polite_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Polite number/polite_number.py -------------------------------------------------------------------------------- /Algorithms/Maths/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Maths/Sieve Eratosthenes/CPP/SieveEratosthenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Sieve Eratosthenes/CPP/SieveEratosthenes.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Sieve Eratosthenes/CPP/sieve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Sieve Eratosthenes/CPP/sieve -------------------------------------------------------------------------------- /Algorithms/Maths/Sieve of Eratosthenes algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Sieve of Eratosthenes algorithm/README.md -------------------------------------------------------------------------------- /Algorithms/Maths/Sieve of Eratosthenes algorithm/cpp/Sieve of Eratosthenes algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Sieve of Eratosthenes algorithm/cpp/Sieve of Eratosthenes algorithm.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/Sieve of Eratosthenes algorithm/java/Sieve ofEratosthenes algorithm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Sieve of Eratosthenes algorithm/java/Sieve ofEratosthenes algorithm.java -------------------------------------------------------------------------------- /Algorithms/Maths/Sieve of Eratosthenes algorithm/sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Sieve of Eratosthenes algorithm/sieve.c -------------------------------------------------------------------------------- /Algorithms/Maths/Sieve of Eratosthenes algorithm/sieve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/Sieve of Eratosthenes algorithm/sieve.py -------------------------------------------------------------------------------- /Algorithms/Maths/armstrong-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/armstrong-number/README.md -------------------------------------------------------------------------------- /Algorithms/Maths/armstrong-number/armstrong-number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/armstrong-number/armstrong-number.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/armstrong-number/armstrong-number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/armstrong-number/armstrong-number.py -------------------------------------------------------------------------------- /Algorithms/Maths/factorial/factorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/factorial/factorial.cpp -------------------------------------------------------------------------------- /Algorithms/Maths/factorial/factorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/factorial/factorial.py -------------------------------------------------------------------------------- /Algorithms/Maths/pure numbers/pure_numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Maths/pure numbers/pure_numbers.cpp -------------------------------------------------------------------------------- /Algorithms/Recursion/palindrome/palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Recursion/palindrome/palindrome.cpp -------------------------------------------------------------------------------- /Algorithms/Recursion/palindrome/palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Recursion/palindrome/palindrome.java -------------------------------------------------------------------------------- /Algorithms/Recursion/palindrome/palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Recursion/palindrome/palindrome.py -------------------------------------------------------------------------------- /Algorithms/Recursion/tower_of_hanoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Recursion/tower_of_hanoi.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/Binary_Burbble_Search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/Binary_Burbble_Search.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/Binary_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/Binary_Search.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/C/binary_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/C/binary_search.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/C/binary_search_iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/C/binary_search_iter.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/CPP/BinarySearchRecursive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/CPP/BinarySearchRecursive.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/CPP/Binary_Search_Iter_Recur.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/CPP/Binary_Search_Iter_Recur.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/Ruby/binary_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/Ruby/binary_search.rb -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/a.out -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/binary_Search_Iterative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/binary_Search_Iterative.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/binary_search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/binary_search.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/binary_search_iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/binary_search_iter.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/binary_search_iterative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/binary_search_iterative.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Binary Search/binary_search_iterative_recursive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Binary Search/binary_search_iterative_recursive.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bogo Sort/bogo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bogo Sort/bogo.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bogo Sort/bogosort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bogo Sort/bogosort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bogo Sort/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bogo Sort/sort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Breadth-First-Search.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Breadth-First-Search.cs -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort in Java/BubbleSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort in Java/BubbleSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/BubbleSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/BubbleSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/BubbleSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/BubbleSort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/Bubble_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/Bubble_sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/Bubble_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/Bubble_sort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/Bubblesort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/Bubblesort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/bubbleSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/bubbleSort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/bubbleSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/bubbleSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.cs -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Bubble Sort/bubble_sort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/BucketSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/BucketSort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Counting Sort/Counting Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Counting Sort/Counting Sort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Counting Sort/Java/CountingSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Counting Sort/Java/CountingSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Counting Sort/Python/counting-sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Counting Sort/Python/counting-sort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Counting Sort/Python/counting_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Counting Sort/Python/counting_sort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Counting Sort/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Counting Sort/Ruby/Counting_sort.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Counting Sort/Ruby/Counting_sort.rb -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Counting Sort/countingsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Counting Sort/countingsort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Depth First Search/DFS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Depth First Search/DFS.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Depth First Search/depth_first_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Depth First Search/depth_first_search.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Exponential Search/exponential_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Exponential Search/exponential_search.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Fibonacii Search/fibinacci_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Fibonacii Search/fibinacci_search.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Fibonacii Search/fibonacci_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Fibonacii Search/fibonacci_search.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Heap Sort/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Heap Sort/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Heap Sort/HeapSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Heap Sort/HeapSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Heap Sort/Heapsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Heap Sort/Heapsort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Heap Sort/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Heap Sort/heap_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Heap Sort/heap_sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Heap Sort/heap_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Heap Sort/heap_sort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/C++/InsertionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/C++/InsertionSort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/C/insertion_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/C/insertion_sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/Insertion-Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/Insertion-Sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/Java/InsertionSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/Java/InsertionSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/Python/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/Python/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/Python/InsertionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/Python/InsertionSort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/README.md -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/insertion sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/insertion sort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/insertion_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/insertion_sort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/insertion_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/insertion_sort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Insertion Sort/insertion_sort_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Insertion Sort/insertion_sort_python.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Interpolation Search/interpolation_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Interpolation Search/interpolation_search.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Jump Search/jump_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Jump Search/jump_search.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Linear Search/LinearSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Linear Search/LinearSearch.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Linear Search/Linear_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Linear Search/Linear_search.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Linear Search/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Linear Search/linear_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Linear Search/linear_search.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Linear Search/linearsearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Linear Search/linearsearch.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Merge Sort/MergeSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Merge Sort/MergeSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Merge Sort/MergeSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Merge Sort/MergeSort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Merge Sort/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Merge Sort/mergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Merge Sort/mergeSort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Merge Sort/merge_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Merge Sort/merge_sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Pancake Sort/pancakesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Pancake Sort/pancakesort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/PigeonHole Sort/piegonhole.sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/PigeonHole Sort/piegonhole.sort -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/QuickSort/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/QuickSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/QuickSort/QuickSort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/QuickSort_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/QuickSort/QuickSort_2.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/quickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/QuickSort/quickSort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/quickSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/QuickSort/quickSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/quick_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/QuickSort/quick_sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/QuickSort/quick_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/QuickSort/quick_sort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Radix Sort/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Radix Sort/Radix_Sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Radix Sort/Radix_Sort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Radix Sort/Radixsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Radix Sort/Radixsort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Radix Sort/radix_sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Radix Sort/radix_sort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/C++/SelectionSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/C++/SelectionSort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/C/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/C/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/C/selectionsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/C/selectionsort.c -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/Java/SelectionSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/Java/SelectionSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/Python/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/Python/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/Python/SelectionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/Python/SelectionSort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Selection Sort/selectionsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Selection Sort/selectionsort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Shell Sort/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Shell Sort/.DS_Store -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Shell Sort/ShellSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Shell Sort/ShellSort.java -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Shell Sort/shellsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Shell Sort/shellsort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Shell Sort/shellsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Shell Sort/shellsort.py -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/Time Sort/timsort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/Time Sort/timsort.cpp -------------------------------------------------------------------------------- /Algorithms/Searching & Sorting/shell sort/shell_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Searching & Sorting/shell sort/shell_sort.cpp -------------------------------------------------------------------------------- /Algorithms/String/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/.DS_Store -------------------------------------------------------------------------------- /Algorithms/String/BoyerMoore/BoyerMoore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/BoyerMoore/BoyerMoore.c -------------------------------------------------------------------------------- /Algorithms/String/KMP/CPP/KMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/KMP/CPP/KMP.cpp -------------------------------------------------------------------------------- /Algorithms/String/NaiveString/NaiveSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/NaiveString/NaiveSearch.java -------------------------------------------------------------------------------- /Algorithms/String/RabinKarp/RabinKarp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/RabinKarp/RabinKarp.c -------------------------------------------------------------------------------- /Algorithms/String/StringReverse/strRev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/StringReverse/strRev.py -------------------------------------------------------------------------------- /Algorithms/String/Sum of Subset/sumofsubset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/Sum of Subset/sumofsubset.py -------------------------------------------------------------------------------- /Algorithms/String/dnapatternmatching/dnapattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/dnapatternmatching/dnapattern.py -------------------------------------------------------------------------------- /Algorithms/String/dnapatternmatching/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/dnapatternmatching/readme.md -------------------------------------------------------------------------------- /Algorithms/String/run-length-encoding/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/run-length-encoding/readme.md -------------------------------------------------------------------------------- /Algorithms/String/run-length-encoding/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/String/run-length-encoding/rle.c -------------------------------------------------------------------------------- /Algorithms/Tree/printLeafNodes/cpp/Print all leaf nodes of a Binary Tree from left to right.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/Tree/printLeafNodes/cpp/Print all leaf nodes of a Binary Tree from left to right.cpp -------------------------------------------------------------------------------- /Algorithms/divide_and_conquer/divide_and_conquer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/divide_and_conquer/divide_and_conquer.py -------------------------------------------------------------------------------- /Algorithms/divide_and_conquer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/divide_and_conquer/readme.md -------------------------------------------------------------------------------- /Algorithms/largest_sum_of_alternate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/largest_sum_of_alternate.md -------------------------------------------------------------------------------- /Algorithms/largest_sum_of_alternate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Algorithms/largest_sum_of_alternate.py -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ClassicalQuestions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/ClassicalQuestions.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/AddStrings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/AddStrings.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/AddTwoNumbers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/AddTwoNumbers.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/BinarySearchTree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/BinarySearchTree.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/HappyNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/HappyNumber.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/MergeSort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/MergeSort.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/MiniParser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/MiniParser.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/RegularExpression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/RegularExpression.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/SingleNumber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/SingleNumber.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/TwoSum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/TwoSum.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Questions/Validparentheses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Questions/Validparentheses.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Cpp/BinarySearchTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Cpp/BinarySearchTree.cpp -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Cpp/MergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Cpp/MergeSort.cpp -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Cpp/TwoSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Cpp/TwoSum.cpp -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Cpp/Validparentheses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Cpp/Validparentheses.cpp -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Cpp/twoSum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Cpp/twoSum.cpp -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Java/TwoSum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Java/TwoSum.java -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Java/ValidParantheses.Java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Java/ValidParantheses.Java -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Airbnb/Solutions/Python/TwoSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Airbnb/Solutions/Python/TwoSum.py -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Amazon/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Amazon/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/Solutions/Cpp/merge_without_extra_space.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Amazon/Solutions/Cpp/merge_without_extra_space.c -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/Solutions/Cpp/solve_sudoku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Amazon/Solutions/Cpp/solve_sudoku -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/Solutions/Java/LowestCommonAncestor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Amazon/Solutions/Java/LowestCommonAncestor.java -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Amazon/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Apple/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Apple/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Apple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Apple/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Apple/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Apple/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Apple/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Apple/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Dropbox/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Dropbox/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Dropbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Dropbox/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Dropbox/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Dropbox/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Dropbox/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Dropbox/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Facebook/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Facebook/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Facebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Facebook/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Facebook/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Facebook/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Facebook/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Facebook/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Counting in BST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Counting in BST.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Egg Drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Egg Drop.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Find the Odds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Find the Odds.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Get and Set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Get and Set.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Jump Num.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Jump Num.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Max Dif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Max Dif.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Sum to Num S.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Sum to Num S.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Triplet check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Triplet check.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Valid.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Questions/Word Sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Questions/Word Sequence.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Cpp/DNA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Solutions/Cpp/DNA.cpp -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Cpp/Word_Break.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Solutions/Cpp/Word_Break.cpp -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Python/google_find_odds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Solutions/Python/google_find_odds.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Python/google_find_odds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Solutions/Python/google_find_odds.py -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Python/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Solutions/Python/valid.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Google/Solutions/Python/valid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Google/Solutions/Python/valid.py -------------------------------------------------------------------------------- /Company Specific Interview Questions/Microsoft/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Microsoft/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Microsoft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Microsoft/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Microsoft/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Microsoft/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Microsoft/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Microsoft/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Stripe/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Stripe/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Stripe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Stripe/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Stripe/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Stripe/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Stripe/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Stripe/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Uber/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Uber/.DS_Store -------------------------------------------------------------------------------- /Company Specific Interview Questions/Uber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Company Specific Interview Questions/Uber/README.md -------------------------------------------------------------------------------- /Company Specific Interview Questions/Uber/Solutions/C/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Uber/Solutions/Cpp/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Uber/Solutions/Java/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Company Specific Interview Questions/Uber/Solutions/Python/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ``` HacktoberFest 2019 ``` 4 | -------------------------------------------------------------------------------- /Data Structures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/.DS_Store -------------------------------------------------------------------------------- /Data Structures/AES/AES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/AES/AES.java -------------------------------------------------------------------------------- /Data Structures/AVL Tree/Avl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/AVL Tree/Avl.py -------------------------------------------------------------------------------- /Data Structures/AVL Tree/Avltree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/AVL Tree/Avltree.py -------------------------------------------------------------------------------- /Data Structures/AVL Tree/avl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/AVL Tree/avl.c -------------------------------------------------------------------------------- /Data Structures/AVL Tree/avl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/AVL Tree/avl.cpp -------------------------------------------------------------------------------- /Data Structures/AVL Tree/avl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/AVL Tree/avl.java -------------------------------------------------------------------------------- /Data Structures/Adjacency matrix/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Adjacency matrix/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Adjacency matrix/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Adjacency matrix/Python/adjacency_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Adjacency matrix/Python/adjacency_matrix.py -------------------------------------------------------------------------------- /Data Structures/Adjacency matrix/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Backtracking/N-queen-problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Backtracking/N-queen-problem.cpp -------------------------------------------------------------------------------- /Data Structures/Circular Linked List/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Circular Linked List/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Circular Linked List/Java/CircularSinglyLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Circular Linked List/Java/CircularSinglyLinkedList.java -------------------------------------------------------------------------------- /Data Structures/Circular Linked List/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Circular Linked List/Python/circular_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Circular Linked List/Python/circular_linked_list.py -------------------------------------------------------------------------------- /Data Structures/Circular Linked List/Python/circularlinkedlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Circular Linked List/Python/circularlinkedlist.py -------------------------------------------------------------------------------- /Data Structures/Circular Linked List/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Circular Queue/C/circular-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Circular Queue/C/circular-queue.c -------------------------------------------------------------------------------- /Data Structures/Deque/Python/deque.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Deque/Python/deque.py -------------------------------------------------------------------------------- /Data Structures/Disjoint Sets/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Disjoint Sets/CPP/disjoint_sets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Disjoint Sets/CPP/disjoint_sets.cpp -------------------------------------------------------------------------------- /Data Structures/Disjoint Sets/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Disjoint Sets/Java/DisjointSets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Disjoint Sets/Java/DisjointSets.java -------------------------------------------------------------------------------- /Data Structures/Disjoint Sets/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Disjoint Sets/Python/DisjointSets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Disjoint Sets/Python/DisjointSets.py -------------------------------------------------------------------------------- /Data Structures/Disjoint Sets/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/C/Doubly linked list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Doubly Linked List/C/Doubly linked list.c -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/C/doubly_linked_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Doubly Linked List/C/doubly_linked_list.c -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/C/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Doubly Linked List/C/readme.md -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/CPP/doublyLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Doubly Linked List/CPP/doublyLL.cpp -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/Java/Doubly Linked List.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Doubly Linked List/Java/Doubly Linked List.java -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/Python/doubly_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Doubly Linked List/Python/doubly_linked_list.py -------------------------------------------------------------------------------- /Data Structures/Doubly Linked List/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/C/dynamic_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Dynamic Array/C/dynamic_array.c -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/CPP/dynamic_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Dynamic Array/CPP/dynamic_array.cpp -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/Java/DynamicArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Dynamic Array/Java/DynamicArray.java -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/Python/dynamic_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Dynamic Array/Python/dynamic_array.py -------------------------------------------------------------------------------- /Data Structures/Dynamic Array/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Fibonacci Heap/.DS_Store -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/C/Fibbonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Fibonacci Heap/C/Fibbonacci.c -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/Python/FibonacciHeap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Fibonacci Heap/Python/FibonacciHeap.py -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/Python/fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Fibonacci Heap/Python/fibonacci.py -------------------------------------------------------------------------------- /Data Structures/Fibonacci Heap/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/.DS_Store -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Bellman Ford Algorithm/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Bellman Ford Algorithm/bellman_ford_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Bellman Ford Algorithm/bellman_ford_algorithm.cpp -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Bellman Ford Algorithm/bellmanford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Bellman Ford Algorithm/bellmanford.py -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Breadth First Search/BreadthFirstSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Breadth First Search/BreadthFirstSearch.py -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Breadth First Search/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Breadth First Search/bfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Breadth First Search/bfs.c -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Breadth First Search/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Breadth First Search/bfs.cpp -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Depth First Search/DepthFirstSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Depth First Search/DepthFirstSearch.py -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Depth First Search/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Depth First Search/dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Depth First Search/dfs.c -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Depth First Search/dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Depth First Search/dfs.cpp -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Depth First Search/dfs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Depth First Search/dfs.java -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Depth First Search/dfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Depth First Search/dfs.py -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Dijkstra's Algorithm/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Dijkstra's Algorithm/dijkstras_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Dijkstra's Algorithm/dijkstras_algorithm.cpp -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Floyd-Warshall Algorithm/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Floyd-Warshall Algorithm/floyd_warshal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Floyd-Warshall Algorithm/floyd_warshal.java -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Floyd-Warshall Algorithm/floyd_warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Floyd-Warshall Algorithm/floyd_warshall.cpp -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Kruskals Algorithms/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Kruskals Algorithms/kruskal_algo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Kruskals Algorithms/kruskal_algo.java -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Kruskals Algorithms/kruskals_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Kruskals Algorithms/kruskals_algorithm.cpp -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Prim's Algorithms/Prims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph Traversal/Prim's Algorithms/Prims.c -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Prim's Algorithms/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph Traversal/Topological Sort/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graph/C/floydwarshall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph/C/floydwarshall.c -------------------------------------------------------------------------------- /Data Structures/Graph/C/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graph/C/readme.md -------------------------------------------------------------------------------- /Data Structures/Graphs/Belmon Ford Algorithm/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Belmon Ford Algorithm/CPP/belmonford.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Belmon Ford Algorithm/CPP/belmonford.c -------------------------------------------------------------------------------- /Data Structures/Graphs/Belmon Ford Algorithm/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Belmon Ford Algorithm/Java/bellman_ford_algo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Belmon Ford Algorithm/Java/bellman_ford_algo.java -------------------------------------------------------------------------------- /Data Structures/Graphs/Belmon Ford Algorithm/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Belmon Ford Algorithm/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Breadth First Search/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Breadth First Search/CPP/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Breadth First Search/CPP/bfs.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/Breadth First Search/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Breadth First Search/Java/BreadthFirstSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Breadth First Search/Java/BreadthFirstSearch.java -------------------------------------------------------------------------------- /Data Structures/Graphs/Breadth First Search/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Breadth First Search/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Cycle Detection/Directed Graph/CPP/cycle_detection_directed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Cycle Detection/Directed Graph/CPP/cycle_detection_directed.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/Cycle Detection/Directed Graph/Java/cycle_detection_directed.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Cycle Detection/Directed Graph/Java/cycle_detection_directed.java -------------------------------------------------------------------------------- /Data Structures/Graphs/Cycle Detection/Directed Graph/Python/cycle_detection_directed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Cycle Detection/Directed Graph/Python/cycle_detection_directed.py -------------------------------------------------------------------------------- /Data Structures/Graphs/Cycle Detection/Undirected Graph/C/cycle_detection_undirected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Cycle Detection/Undirected Graph/C/cycle_detection_undirected.c -------------------------------------------------------------------------------- /Data Structures/Graphs/Cycle Detection/Undirected Graph/CPP/cycle_detection_undirected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Cycle Detection/Undirected Graph/CPP/cycle_detection_undirected.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/Cycle Detection/Undirected Graph/Java/cycle_detection_undirected.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Cycle Detection/Undirected Graph/Java/cycle_detection_undirected.java -------------------------------------------------------------------------------- /Data Structures/Graphs/Cycle Detection/Undirected Graph/Python/cycle_detection_undirected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Cycle Detection/Undirected Graph/Python/cycle_detection_undirected.py -------------------------------------------------------------------------------- /Data Structures/Graphs/Depth First Search/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Depth First Search/CPP/dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Depth First Search/CPP/dfs.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/Depth First Search/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Depth First Search/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Depth First Search/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Dijkstra's Algorithm/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Dijkstra's Algorithm/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Dijkstra's Algorithm/Java/Dijkstra.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Dijkstra's Algorithm/Java/Dijkstra.java -------------------------------------------------------------------------------- /Data Structures/Graphs/Dijkstra's Algorithm/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Dijkstra's Algorithm/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Floyd-Warshall Algorithm/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Floyd-Warshall Algorithm/CPP/FW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Floyd-Warshall Algorithm/CPP/FW.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/Floyd-Warshall Algorithm/CPP/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Floyd-Warshall Algorithm/CPP/a.out -------------------------------------------------------------------------------- /Data Structures/Graphs/Floyd-Warshall Algorithm/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Floyd-Warshall Algorithm/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Floyd-Warshall Algorithm/Python/floyd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Floyd-Warshall Algorithm/Python/floyd.py -------------------------------------------------------------------------------- /Data Structures/Graphs/Floyd-Warshall Algorithm/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Implementation of BFS using adjacency matrix/c++/Implementation of BFS using adjacency matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Implementation of BFS using adjacency matrix/c++/Implementation of BFS using adjacency matrix.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/Kruskal's Algorithm/C/kruskals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Kruskal's Algorithm/C/kruskals.c -------------------------------------------------------------------------------- /Data Structures/Graphs/Kruskal's Algorithm/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Kruskal's Algorithm/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Kruskal's Algorithm/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Kruskal's Algorithm/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Prim's Algorithm/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Prim's Algorithm/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Prim's Algorithm/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Prim's Algorithm/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Tarjan's algorithm/Tarjan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Tarjan's algorithm/Tarjan.java -------------------------------------------------------------------------------- /Data Structures/Graphs/Topological Sort/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Topological Sort/CPP/TopologicalSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/Topological Sort/CPP/TopologicalSort.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/Topological Sort/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Topological Sort/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/Topological Sort/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Graphs/ford_fulkerson_maximum_flow/FordFulkersonUsingBfs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/ford_fulkerson_maximum_flow/FordFulkersonUsingBfs.java -------------------------------------------------------------------------------- /Data Structures/Graphs/ford_fulkerson_maximum_flow/ford_fulkerson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/ford_fulkerson_maximum_flow/ford_fulkerson.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/ford_fulkerson_maximum_flow/ford_fulkerson_using_bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/ford_fulkerson_maximum_flow/ford_fulkerson_using_bfs.cpp -------------------------------------------------------------------------------- /Data Structures/Graphs/ford_fulkerson_maximum_flow/ford_fulkerson_using_bfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Graphs/ford_fulkerson_maximum_flow/ford_fulkerson_using_bfs.py -------------------------------------------------------------------------------- /Data Structures/Hash Tables/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Hash Tables/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Hash Tables/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Hash Tables/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Heap/C/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Heap/C/heap.c -------------------------------------------------------------------------------- /Data Structures/Heap/C/maxHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Heap/C/maxHeap.cpp -------------------------------------------------------------------------------- /Data Structures/Heap/C/readme.md: -------------------------------------------------------------------------------- 1 | Max heap in C. 2 | First build a maxHeapify function. 3 | -------------------------------------------------------------------------------- /Data Structures/Heap/CPP/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Heap/CPP/heap.cpp -------------------------------------------------------------------------------- /Data Structures/Heap/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Heap/Java/Heap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Heap/Java/Heap.java -------------------------------------------------------------------------------- /Data Structures/Heap/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Heap/Python/Heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Heap/Python/Heap.py -------------------------------------------------------------------------------- /Data Structures/Heap/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Palindrome/C_palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Palindrome/C_palindrome.c -------------------------------------------------------------------------------- /Data Structures/Palindrome/Cpp_palindrome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Palindrome/Cpp_palindrome.cpp -------------------------------------------------------------------------------- /Data Structures/Palindrome/Java_palindrome.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Palindrome/Java_palindrome.java -------------------------------------------------------------------------------- /Data Structures/Palindrome/Python_palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Palindrome/Python_palindrome.py -------------------------------------------------------------------------------- /Data Structures/Priority Queue/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Priority Queue/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Priority Queue/Java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Priority Queue/Java/Main.java -------------------------------------------------------------------------------- /Data Structures/Priority Queue/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Priority Queue/Python/priority_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Priority Queue/Python/priority_queue.py -------------------------------------------------------------------------------- /Data Structures/Priority Queue/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Queue/C/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/C/queue.c -------------------------------------------------------------------------------- /Data Structures/Queue/C/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/C/readme.md -------------------------------------------------------------------------------- /Data Structures/Queue/CPP/Queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/CPP/Queue.cpp -------------------------------------------------------------------------------- /Data Structures/Queue/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Queue/Java/Queue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/Java/Queue.java -------------------------------------------------------------------------------- /Data Structures/Queue/Java/StaticQueueinjava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/Java/StaticQueueinjava.java -------------------------------------------------------------------------------- /Data Structures/Queue/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Queue/Python/Queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/Python/Queue.py -------------------------------------------------------------------------------- /Data Structures/Queue/Python/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/Python/queue.py -------------------------------------------------------------------------------- /Data Structures/Queue/Python/queueinpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/Python/queueinpy.py -------------------------------------------------------------------------------- /Data Structures/Queue/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Queue/Python/simple_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/Python/simple_queue.py -------------------------------------------------------------------------------- /Data Structures/Queue/Ruby/queue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Queue/Ruby/queue.rb -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/C/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/C/singlylinkedlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Singly Linked List/C/singlylinkedlist.c -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/CPP/singlylinkedlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Singly Linked List/CPP/singlylinkedlist.cpp -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/Java/SinglyLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Singly Linked List/Java/SinglyLinkedList.java -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/Python/SinglyLinkedList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Singly Linked List/Python/SinglyLinkedList.py -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/Python/linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Singly Linked List/Python/linked_list.py -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/Python/readme.md: -------------------------------------------------------------------------------- 1 | # This is a simple linkedlist in python 2 | -------------------------------------------------------------------------------- /Data Structures/Singly Linked List/Python/singly_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Singly Linked List/Python/singly_linked_list.py -------------------------------------------------------------------------------- /Data Structures/Stack/C/dynamic_memory_allocation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/C/dynamic_memory_allocation/readme.md -------------------------------------------------------------------------------- /Data Structures/Stack/C/dynamic_memory_allocation/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/C/dynamic_memory_allocation/stack.c -------------------------------------------------------------------------------- /Data Structures/Stack/C/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/C/readme.md -------------------------------------------------------------------------------- /Data Structures/Stack/C/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/C/stack.c -------------------------------------------------------------------------------- /Data Structures/Stack/C/stack2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/C/stack2.c -------------------------------------------------------------------------------- /Data Structures/Stack/CPP/Stack.CPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/CPP/Stack.CPP -------------------------------------------------------------------------------- /Data Structures/Stack/CPP/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Stack/Java/Stack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/Java/Stack.java -------------------------------------------------------------------------------- /Data Structures/Stack/Java/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Stack/Python/Stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/Python/Stack.py -------------------------------------------------------------------------------- /Data Structures/Stack/Python/python_stack_implementation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Stack/Python/python_stack_implementation.py -------------------------------------------------------------------------------- /Data Structures/Stack/Python/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/.DS_Store -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/AVL Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Binary Search Tree/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Binary Search Tree/.DS_Store -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Binary Search Tree/BST.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Binary Search Tree/BST.py -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Binary Search Tree/Python/1.Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Binary Search Tree/Python/1.Search.py -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Binary Search Tree/Python/2.Insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Binary Search Tree/Python/2.Insert.py -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Binary Search Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Depth of the Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Fenwick Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Fenwick Tree/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Fenwick Tree/a.out -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Fenwick Tree/fenwick_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Fenwick Tree/fenwick_tree.cpp -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Height of the Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/In-Order Traversal/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/In-Order Traversal/inorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/In-Order Traversal/inorder.c -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/In-Order Traversal/inorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/In-Order Traversal/inorder.cpp -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/In-Order Traversal/inorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/In-Order Traversal/inorder.js -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/In-Order Traversal/inorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/In-Order Traversal/inorder.py -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Lowest Common Ancestor in BST/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Lowest Common Ancestor in BST/.DS_Store -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Lowest Common Ancestor in BST/c/Lowest Common Ancestor in BST using C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Lowest Common Ancestor in BST/c/Lowest Common Ancestor in BST using C++.cpp -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Post-Order Traversal/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Post-Order Traversal/postorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Post-Order Traversal/postorder.c -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Post-Order Traversal/postorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Post-Order Traversal/postorder.cpp -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Post-Order Traversal/postorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Post-Order Traversal/postorder.js -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Post-Order Traversal/postorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Post-Order Traversal/postorder.py -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Pre-Order Traversal/Preorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Pre-Order Traversal/Preorder.py -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Pre-Order Traversal/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Pre-Order Traversal/preorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Pre-Order Traversal/preorder.c -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Pre-Order Traversal/preorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Pre-Order Traversal/preorder.cpp -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Pre-Order Traversal/preorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Pre-Order Traversal/preorder.js -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Segment Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Spanning Tree/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Spanning Tree/Tree Traversal - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Spanning Tree/Tree Traversal - Shortcut.lnk -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Sum of all leaf nodes/Sum of all leaf nodes of binary tree in C++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/Sum of all leaf nodes/Sum of all leaf nodes of binary tree in C++.cpp -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/Trie/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/deleteTree/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/deleteTree/.DS_Store -------------------------------------------------------------------------------- /Data Structures/Tree Traversal/deleteTree/cpp/delete a Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Tree Traversal/deleteTree/cpp/delete a Tree.cpp -------------------------------------------------------------------------------- /Data Structures/Trie/Trie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Trie/Trie.cpp -------------------------------------------------------------------------------- /Data Structures/Trie/Trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Trie/Trie.py -------------------------------------------------------------------------------- /Data Structures/Trie/trie.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Data Structures/Trie/trie.java -------------------------------------------------------------------------------- /Factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/Factorial.c -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fnplus/hacktoberfest-interview-questions/HEAD/README.md --------------------------------------------------------------------------------