Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ functions
Functions
2,714 in github.com/codemistic/Data-Structures-and-Algorithms
⨍
Functions
2,714
◇
Types & classes
687
↓ 1 callers
Function
hashtable
(mylist)
Python/hashtables/firstRecurringnum.py:11
↓ 1 callers
Method
heading
Return the turtle's current heading. No arguments. Example (for a Turtle instance named turtle): >>> turtle.left(67)
Python/Turtle.py:1794
↓ 1 callers
Function
heapSort
Function to implement the heap sort*/
CPP/sorting/heap_sort.cpp:27
↓ 1 callers
Function
heapSort
(customList)
Python/all sorting methods.py:162
↓ 1 callers
Function
heapSort
(arr)
Python/Sorting-Techniques/heapSort.py:17
↓ 1 callers
Function
heapsort
Function to perform heapsort on the given range of elements
CPP/sorting/intro_sort.cpp:75
↓ 1 callers
Function
hehe
CPP/recursion/1toN.cpp:8
↓ 1 callers
Function
hehehe
CPP/recursion/firstNsum.cpp:9
↓ 1 callers
Function
hehehe
CPP/recursion/factorial.cpp:9
↓ 1 callers
Function
height
Function to find height of a tree */
CPP/Trees/Diameter_of_tree.cpp:12
↓ 1 callers
Function
helper
CPP/array-2d/CycleDetection.cpp:6
↓ 1 callers
Function
helper
CPP/Dynamic Programming/Minimum_Digit_Delete.cpp:11
↓ 1 callers
Function
helper
Time: O(n*k*logn), Space: O(n*k)
CPP/Dynamic Programming/Egg_Drop.cpp:6
↓ 1 callers
Method
helper
(self,s,mp)
Python/decodeWays.py:11
↓ 1 callers
Method
helper
(int num1, int num2, int count)
Java/CountOperationsToObtainZero.java:12
↓ 1 callers
Method
hideturtle
Makes the turtle invisible. Aliases: hideturtle | ht No argument. It's a good idea to do this while you're in the m
Python/Turtle.py:2207
↓ 1 callers
Method
highest
(String str)
Java/String/HighestOccuringCharacter.java:9
↓ 1 callers
Function
inOrder
Trees/binarytreetraversal.c:51
↓ 1 callers
Function
inc
the code will go towards base case
CPP/recursion/rec_direction.cpp:17
↓ 1 callers
Method
infixToPostFix
(String expression)
Java/Stack/InfixToPostfix/InfixToPostfix_byManik.java:19
↓ 1 callers
Function
initCharStack
CPP/Trees/Expression_tree/Stack.c:51
↓ 1 callers
Function
initStack
CPP/Trees/Expression_tree/Stack.c:5
↓ 1 callers
Function
initTable
function to fill hash table with dummy value * dummy value: INT_MIN * number of hashtables: ver */
Hashtable/cuckoo-hashing.cpp:21
↓ 1 callers
Function
initTree
CPP/Trees/Expression_tree/BST.c:115
↓ 1 callers
Function
initial
CPP/array-2d/brute_force.cpp:20
↓ 1 callers
Function
initial
CPP/array-2d/prefix_sum.cpp:19
↓ 1 callers
Function
initial
CPP/array-2d/reverse_array.cpp:13
↓ 1 callers
Function
initial
CPP/searching/binary_search.cpp:21
↓ 1 callers
Function
initial
CPP/searching/linear_search.cpp:12
↓ 1 callers
Function
inorder
CPP/Trees/RecoverBinarySearchTree.cpp:5
↓ 1 callers
Function
inorder
CPP/BST/InsertionInABST.cpp:17
↓ 1 callers
Function
inorder
(node, m)
Hashtable/Find-All-Duplicate-Subtrees.py:12
↓ 1 callers
Function
insert
CPP/BST/InsertionInABST.cpp:41
↓ 1 callers
Method
insertAt
(element, index)
DSA Javascript/linked_list.js:45
↓ 1 callers
Method
insertEdge
(int v, int w)
Java/BfsTraversal.java:18
↓ 1 callers
Method
insertEdge
(int src, int dest)
Java/DFSTraversal.java:18
↓ 1 callers
Function
insertTrie
CPP/Tries/autoComplete.cpp:35
↓ 1 callers
Function
insertathead
CPP/LINKED LIST/SINGLY LINKED LIST/Maths For DSA/merge_two_linkedlist.cpp:24
↓ 1 callers
Function
insertatposition
CPP/LINKED LIST/SINGLY LINKED LIST/linkedlistF.cpp:108
↓ 1 callers
Function
insertatposition
CPP/LINKED LIST/DOUBLY LINKED LIST/doublylinkedlistpractice.cpp:33
↓ 1 callers
Function
insertatposition
CPP/LINKED LIST/DOUBLY LINKED LIST/doublylinkedlist.cpp:57
↓ 1 callers
Function
insertatpositon
CPP/LINKED LIST/DOUBLY LINKED LIST/doublyreverselinked.cpp:52
↓ 1 callers
Function
insertion
Trees/binarytreetraversal.c:22
↓ 1 callers
Method
insertion
(int arr[])
Java/Array/FindGreatestCommonDivisorOfArray.java:37
↓ 1 callers
Function
insertionSort
(customList)
Python/all sorting methods.py:28
↓ 1 callers
Function
insertionSortRecursive
Recursive function to sort an array using insertion sort
CPP/sorting/Recursive Insertion Sort.cpp:7
↓ 1 callers
Function
insertion_sort
CPP/sorting/insertionsort.cpp:3
↓ 1 callers
Function
insertionsort
Function to perform insertion sort on subarray `a[low…high]`
CPP/sorting/intro_sort.cpp:8
↓ 1 callers
Method
insertionsort
CPP/DS C++/Insertion and Quick sort on Arraylist.cpp:27
↓ 1 callers
Function
inside
Return True if head inside boundaries.
Python/snake.py:25
↓ 1 callers
Function
interpolationSearch
CPP/searching/interpolation_search.cpp:35
↓ 1 callers
Function
interpolationSearch
(arr, lo, hi, x)
Python/Searching-Algorithms/interpolation_search.py:10
↓ 1 callers
Method
interpret
(String command)
Java/Leetcode/Leetcode1678.java:10
↓ 1 callers
Function
introsort
Function to perform introsort on the given array
CPP/sorting/intro_sort.cpp:82
↓ 1 callers
Function
isAlNum
CPP/Trees/Expression_tree/BST.c:41
↓ 1 callers
Function
isAnExponentOfTwo
CPP/OptimizedExponentOfTwoCheck.cpp:4
↓ 1 callers
Method
isBalanced
(String expression)
Java/Stack/BalancedBrackets.java:6
↓ 1 callers
Function
isBipartite
Returns true if G[][] is Bipartite, else false
CPP/graph_tree/Check for bipertite.cpp:56
↓ 1 callers
Function
isBipartiteUtil
This function returns true if graph G[V][V] is Bipartite, else false
CPP/graph_tree/Check for bipertite.cpp:11
↓ 1 callers
Method
isCycle
(int V, ArrayList<ArrayList<Integer>> adj)
graph/cycledetectionInUndirectedGraph.java:9
↓ 1 callers
Method
isCyclic
CPP/graph_tree/Detect a cycle in a graph.cpp:41
↓ 1 callers
Function
isEmpty
Stack/stack_implementation_using_array.c:52
↓ 1 callers
Method
isEmpty
stack emptly check function
CPP/structures/stack using linked list.cpp:61
↓ 1 callers
Method
isFull
(self)
Python/circular queue.py:17
↓ 1 callers
Method
isFull
(self,stacknum)
Python/DIVIDE THE LIST INTO THREE STACKS.py:10
↓ 1 callers
Method
isInBox
(int row, int col, int number)
Java/SODUKO-SOLVER/soduko-solver.java:51
↓ 1 callers
Method
isInCol
(int col, int number)
Java/SODUKO-SOLVER/soduko-solver.java:42
↓ 1 callers
Method
isInRow
(int row, int number)
Java/SODUKO-SOLVER/soduko-solver.java:33
↓ 1 callers
Method
isNotB
(char bracket)
Java/Stack/BalancedBrackets.java:20
↓ 1 callers
Method
isOk
(int row, int col, int number)
Java/SODUKO-SOLVER/soduko-solver.java:64
↓ 1 callers
Method
isOpeningB
(char bracket)
Java/Stack/BalancedBrackets.java:23
↓ 1 callers
Method
isOverlap
(int minS, int maxE, Interval i)
LeetCode Solutions/merge interval.java:50
↓ 1 callers
Function
isPalindrome
CPP/char array/checkpali.cpp:8
↓ 1 callers
Function
isPalindrome
CPP/recursion/is_pali.cpp:8
↓ 1 callers
Function
isPalindrome
A function to check if a string str is palindrome in the range L to R
Hashtable/Palindrome-Substring-Queries.cpp:18
↓ 1 callers
Function
isPalindrome
(strng)
Python/5 recusrion problems.py:33
↓ 1 callers
Function
isPalindrome
(s)
Python/palindrome.py:3
↓ 1 callers
Method
isPerfectSquare
(int num)
Leetcode-solutions/Binary-search/ValidPerfectSquare.java:7
↓ 1 callers
Method
isPotentialK
(int[][] matrix, int m, int k)
Leetcode-solutions/Binary-search/kthSmallestInMatrix.java:28
↓ 1 callers
Method
isPotentialK
(int potential, int m, int n, int k)
Leetcode-solutions/Binary-search/KthSmallestMultiplicationTable.java:25
↓ 1 callers
Method
isPotentialLargestSum
(int estimatedLargest, int[] nums, int piecesAsked)
Leetcode-solutions/Binary-search/SplitArray.java:29
↓ 1 callers
Function
isPrime
CPP/Maths/primeNo.cpp:4
↓ 1 callers
Function
isSubset
CPP/searching/binary_search2.cpp:24
↓ 1 callers
Method
isValid
(List<String> list, int row, int column, int n)
Java/LeetCodeN-Queens.java:35
↓ 1 callers
Function
is_leaf
Trees/Binary_tree_Array.c:69
↓ 1 callers
Function
is_operator
CPP/Trees/Expression_tree/BST.c:15
↓ 1 callers
Function
is_plaind
CPP/LINKED LIST/ALGORITHMIC PROBLEMS RELATED TO LINKEDLIST/test5.cpp:6
↓ 1 callers
Function
is_prime
(n)
Python/CheckForPrime.py:6
↓ 1 callers
Function
is_safe
CSES/Intro/CheesboardAndQueens.cc:8
↓ 1 callers
Method
ispali
(String str)
Java/String/StringPalindrome.java:16
↓ 1 callers
Function
issorted
CPP/recursion/is_sorted.cpp:8
↓ 1 callers
Function
jumpSearch
( arr , x , n )
Python/Searching-Algorithms/Jump_search.py:6
↓ 1 callers
Function
kadane
CPP/array-2d/kadane_algo.cpp:3
↓ 1 callers
Method
knap
(int[] wt, int[] val, int W, int n)
knapsack.java:4
↓ 1 callers
Function
knapSack
this fuction returns the maximum value that can be put in a knapsack of capacity W
CPP/recursion/0-1 Knapsack.cpp:6
↓ 1 callers
Function
knapsack
CPP/Dynamic Programming/0-1_Knapsack.cpp:5
↓ 1 callers
Function
kosaraju
graph/code18.cpp:71
↓ 1 callers
Function
kruskal
graph/code15.cpp:65
↓ 1 callers
Method
kruskal_algo
(self)
Python/Kruskal's_Algorithm.py:31
↓ 1 callers
Method
kruskals_mst
CPP/Kruskal's_Algorithm.cpp:63
← previous
next →
801–900 of 2,714, ranked by callers