Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice
/ functions
Functions
2,762 in github.com/Ayush7614/Daily-Coding-DS-ALGO-Practice
⨍
Functions
2,762
◇
Types & classes
612
↓ 1 callers
Function
hourglassSum
(arr)
Data Structures/Array/Python/2D Array.py:8
↓ 1 callers
Function
huffmanEncode
Gfg/C++/Huffman Encoding.cpp:36
↓ 1 callers
Method
huffmanencode
(Node root,String res)
Gfg/Java/Huffman Encoding.java:51
↓ 1 callers
Function
hurdleRace
Hackerank/C++/The Hurdle Race.cpp:53
↓ 1 callers
Function
icecreamParlor
Hackerank/C++/Ice Cream Parlor.cpp:57
↓ 1 callers
Method
inOrder
Data Structures/Tree/Tree_Traversal.cpp:130
↓ 1 callers
Method
inOrder
(Node node)
Data Structures/Tree/Java/AVL_Tree.java:27
↓ 1 callers
Function
in_range
Codechef/C++/Dense Graph (DENSEGRP).cpp:6
↓ 1 callers
Method
index
(String second, String first, int q)
Algorithms/Miscellaneous/Java/Rabin-Karp Algo.java:7
↓ 1 callers
Function
infixToPostfix
Data Structures/Stack/C/Infix to Postfix Using Stack in C.c:73
↓ 1 callers
Method
infix_postfix
(self,exp)
Data Structures/Stack/Python/Infix_postfix.py:46
↓ 1 callers
Function
init_fw_tree
Function to implement the Fenwick Tree */
Data Structures/FenwickTree.c:36
↓ 1 callers
Function
init_fw_tree
Function to implement the Fenwick Tree */
Data Structures/Tree/C/FenwickTree.c:36
↓ 1 callers
Function
inorder
to sort-inorder traversal gives sorted list
Algorithms/Searching and Sorting/C++/BST Sort.cpp:43
↓ 1 callers
Function
inorder
(root)
Data Structures/constructing a bst.py:11
↓ 1 callers
Function
inorder
(root)
Data Structures/Tree/BST.py:111
↓ 1 callers
Function
inorder
Function to find Inorder
Gfg/C++/normal_BST_to_Balanced_BST.cpp:28
↓ 1 callers
Method
inorder
In-Order traversal Left Subtree -> Node -> Right Subtree
Data Structures/Tree/C++/Red Black Tree (Insertion and Deletion operation).cpp:286
↓ 1 callers
Function
inorderSuccessor
(node)
Data Structures/Tree/BST.py:64
↓ 1 callers
Function
inp
()
Codechef/Python/CyclicQuad.py:18
↓ 1 callers
Function
input_1D_vector
Codechef/C++/mod-equality.cpp:55
↓ 1 callers
Function
inputarr
Algorithms/Searching and Sorting/C++/sorting.cpp:69
↓ 1 callers
Function
insert
Algorithms/Dynamic Problems/k_arrayheap.cpp:87
↓ 1 callers
Function
insert
Building the trie
Data Structures/Max_XOR_of_Two_Array.cpp:16
↓ 1 callers
Function
insert
Data Structures/Tree/C++/Binary_Search_Tree.cpp:63
↓ 1 callers
Function
insert
Gfg/C++/Delete_without_head_pointer.cpp:29
↓ 1 callers
Function
insert
If not present, inserts key into trie If the key is prefix of trie node, just marks leaf node
Gfg/C++/trie-insert-and-search.cpp:34
↓ 1 callers
Method
insert
Data Structures/LinkedList/C++/Double_linked_list.cpp:49
↓ 1 callers
Method
insert
insert the key to the tree in its appropriate position and fix the tree
Data Structures/Tree/C++/Red Black Tree (Insertion and Deletion operation).cpp:396
↓ 1 callers
Method
insert
(int num)
Data Structures/Tree/Java/AVL_Tree.java:22
↓ 1 callers
Method
insertAfter
(Node prev_node, int data)
Algorithms/LinkedList/singlyll.java:22
↓ 1 callers
Method
insertAfter
(Node prev_node, int data)
Algorithms/LinkedList/linkedlist.java:25
↓ 1 callers
Method
insertAt
Data Structures/LinkedList/C++/Doubly-Linked-List2.cpp:176
↓ 1 callers
Method
insertAt
Data Structures/LinkedList/C++/Doubly-Linked-List.cpp:173
↓ 1 callers
Method
insertAtHead
Data Structures/LinkedList/C++/Doubly-Linked-List2.cpp:145
↓ 1 callers
Method
insertAtHead
Data Structures/LinkedList/C++/Doubly-Linked-List.cpp:143
↓ 1 callers
Method
insertAtTail
Data Structures/LinkedList/C++/Doubly-Linked-List2.cpp:161
↓ 1 callers
Method
insertAtTail
Data Structures/LinkedList/C++/Doubly-Linked-List.cpp:158
↓ 1 callers
Method
insertData
(int data)
Data Structures/Stack/Java/Min_Element_In_Stack.java:11
↓ 1 callers
Function
insertIntoTree
to insert a node into BST
Algorithms/Searching and Sorting/C++/BST Sort.cpp:15
↓ 1 callers
Function
insert_begin
Data Structures/LinkedList/C/Operations_on_linkedlist.c:156
↓ 1 callers
Method
insert_begin
Inserting element in beginning
Data Structures/LinkedList/C++/SinglyLinkedList.cpp:136
↓ 1 callers
Function
insert_end
Data Structures/LinkedList/C/Operations_on_linkedlist.c:178
↓ 1 callers
Method
insert_last
Inserting Node at last
Data Structures/LinkedList/C++/SinglyLinkedList.cpp:158
↓ 1 callers
Method
insert_node
Hackerank/C++/Reverse a Doubly Linked List.cpp:29
↓ 1 callers
Function
insert_node_into_singly_linked_list
Hackerank/C/Delete-Duplicate-Value-Node-From-Sorted-LinkedList.c:40
↓ 1 callers
Function
insert_pos
Data Structures/LinkedList/C/Operations_on_linkedlist.c:204
↓ 1 callers
Method
insert_pos
Insertion of node at a given position
Data Structures/LinkedList/C++/SinglyLinkedList.cpp:176
↓ 1 callers
Method
insert_tree
Data Structures/Tree/Tree_Traversal.cpp:79
↓ 1 callers
Function
insertionSort
(b)
Algorithms/Searching and Sorting/Python/Bucket_Sort.py:2
↓ 1 callers
Function
insertionSort
Function to sort an array using insertion sort*/
Algorithms/Searching and Sorting/C++/Insertion Sort.cpp:6
↓ 1 callers
Function
insertionSort
Function to sort an array a[] of size 'n'
Algorithms/Searching and Sorting/C++/Binary Insertion Sort.cpp:29
↓ 1 callers
Function
insertionSort
sorting using insertion sort
Algorithms/Searching and Sorting/C++/Binary_Insertion_Sort.cpp:27
↓ 1 callers
Method
insertionSort
()
Algorithms/Searching and Sorting/Java/ArrayInsertsort.java:30
↓ 1 callers
Method
insertionSort
Gfg/C++/SinglyLinkedListInsertionSort.cpp:35
↓ 1 callers
Method
insertion_sort
(Vector<Float> Array)
Algorithms/Bucket_Sort_JAVA.java:5
↓ 1 callers
Method
intToRoman
Leetcode/C++/IntToRoman.cpp:49
↓ 1 callers
Function
interpolationSearch
If the searching element is present it will return its index, else it will return -1.
Algorithms/Searching and Sorting/C++/Interpolation.cpp:5
↓ 1 callers
Function
interpolationSearch
If x is present in arr[0..n-1], then returns index of it, else returns -1.
Algorithms/Searching and Sorting/C++/interpolationSearch.cpp:6
↓ 1 callers
Function
interpolationSearch
(arr,k)
Gfg/Python/InterpolationSearch.py:4
↓ 1 callers
Function
interpolation_search
Algorithms/Searching and Sorting/C/InterpolationSearch.c:7
↓ 1 callers
Function
intersectPoint
Function to find intersection point in Y shaped Linked Lists.
Gfg/C++/Intersection_Point_in_Y_Shapped_Linked_Lists.cpp:27
↓ 1 callers
Method
intersectionOfSortedArray
(int firstArray[], int secondArray[], int n, int m)
Data Structures/Array/Java/intersection.java:12
↓ 1 callers
Function
intostack
Data Structures/Reverse a link list using stack.cpp:22
↓ 1 callers
Function
inverse
Algorithms/Miscellaneous/C++/Chinese_Remainder_Theorem.cpp:12
↓ 1 callers
Method
inversionCount
Gfg/C++/Count Inversions.cpp:41
↓ 1 callers
Function
isBalanced
Hackerank/C++/Balanced Brackets.cpp:49
↓ 1 callers
Method
isBridge
Function to find if the given edge is a bridge in graph.
Gfg/C++/bridge_edge_in_graph.cpp:39
↓ 1 callers
Method
isCycle
Data Structures/Graph/C++/Detect Cycle In Undirected Graph.cpp:36
↓ 1 callers
Method
isCycle
Function to detect cycle in an undirected graph.
Gfg/C++/Detect cycle in an undirected graph.cpp:38
↓ 1 callers
Function
isDivisible
Codechef/C++/Divisibility Test (DIVTEST).cpp:9
↓ 1 callers
Method
isEmpty
()
Data Structures/Stack/Java/Stack_Using_LinkedList.java:50
↓ 1 callers
Method
isEmpty
()
Gfg/Java/Implementation of Stack.java:20
↓ 1 callers
Function
isFull
Queue is full when size becomes equal to the capacity
Gfg/C++/implementation Of Queue.cpp:31
↓ 1 callers
Method
isLeap
(int year)
Hackerank/Java/Day-of-the-programmer.java:66
↓ 1 callers
Function
isLucky
Function to check a number is lucky or not
Hackerank/C++/lucky_number.cpp:60
↓ 1 callers
Function
isMajority
(A, cand)
Data Structures/MajorityElement.py:19
↓ 1 callers
Method
isMatch
Leetcode/C++/Regular_Expression_Matching(hard).cpp:94
↓ 1 callers
Method
isOperand
(self,ch)
Data Structures/Stack/Python/Infix_postfix.py:31
↓ 1 callers
Function
isOperator
(p)
Data Structures/Stack/Python/Prefixtoinfix.py:16
↓ 1 callers
Function
isPalindrome
(string: str, low: int, high: int)
Algorithms/Miscellaneous/Python/Palindromic_Partition.py:6
↓ 1 callers
Function
isPalindrome
A utility function to check if str is palindrome
Algorithms/Miscellaneous/C++/Palindromic_Partitions.cpp:6
↓ 1 callers
Function
isPalindrome
Function to check if given linked list is palindrome or not
Data Structures/LinkedList/C++/Pallindrome_Linked_List.cpp:17
↓ 1 callers
Method
isPlaindrome
(String str)
Gfg/Java/Palindrome String.java:24
↓ 1 callers
Function
isPossible2
Codechef/C++/mod-equality.cpp:96
↓ 1 callers
Function
isPowerOfTwo
(x)
Algorithms/Miscellaneous/Python/power_of_2_(Bit_Manipulation).py:29
↓ 1 callers
Method
isQueenSafe
(int[][] chess, int row, int col)
Algorithms/Backtracking/Java/NQueens.java:47
↓ 1 callers
Function
isSafe
( maze, x, y )
Algorithms/Backtracking/Python/ratInMaze.py:17
↓ 1 callers
Function
isSafe
Checks whether it will be legal to assign num to the given row, col
Algorithms/Backtracking/C++/Sudoku Backtracking-7.cpp:22
↓ 1 callers
Function
isSafe
Algorithms/Backtracking/C++/Rat in a Maze.cpp:3
↓ 1 callers
Function
isSafe
Algorithms/Backtracking/C++/n-queen.cpp:3
↓ 1 callers
Function
isSafe
Gfg/C++/M-Coloring Problem.cpp:7
↓ 1 callers
Function
isSafe
A utility function to check if a queen can be placed on board[row][col]. Note that this function is called when "col" queens are already placed in col
Gfg/C++/printing-solutions-n-queen-problem.cpp:14
↓ 1 callers
Method
isSafeForQueen
(int[][] board, int row, int col)
Algorithms/Backtracking/Java/NQueenBacktracking.java:18
↓ 1 callers
Method
isSafeForSudoku
(int[][] grid, int row, int col, int val)
Algorithms/Backtracking/Java/SudokuBacktracking.java:64
↓ 1 callers
Method
isSubSequenceFound
(String str1, String str2)
Codeforces/Java/ChatRoom.java:15
↓ 1 callers
Method
isTriangular
Gfg/C++/Triangular_Number.cpp:22
↓ 1 callers
Function
isUgly
Function to check if a number is ugly or not
Algorithms/Dynamic Problems/C++/Ugly Number.cpp:20
↓ 1 callers
Function
isUgly
Function to check if a number is ugly or not */
Gfg/C++/uglynum.cpp:17
↓ 1 callers
Method
isValid
(int []arr,int n,int m,int max)
Gfg/Java/AllocateMinimumNumberOfPages.java:52
← previous
next →
801–900 of 2,762, ranked by callers