Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Ayu-99/Data-Structures
/ functions
Functions
807 in github.com/Ayu-99/Data-Structures
⨍
Functions
807
◇
Types & classes
444
Method
helper
Leetcode Challenge/december2k22/Climbing Stairs.cpp:3
Method
helper
Leetcode Challenge/June/Generate Parentheses.cpp:4
Method
helper
Leetcode Challenge/June2k22/cpp/Delete Operation for Two Strings.cpp:8
Method
helper
Leetcode Challenge/January/Palindrome Partitioning.cpp:13
Method
helper
Leetcode Challenge/January/Stone Game IV.cpp:6
Method
helper
(arr, i)
Leetcode Challenge/December/Jump Game III.py:4
Method
helper
Leetcode Challenge/December/Binary Tree Tilt.cpp:15
Method
helper
Binary Search/C++/Find K-th Smallest Pair Distance.cpp:3
Method
inOrder
(self, A, B, lis)
Trees/Kth Smallest Element In Tree.py:9
Method
inOrderTraverse
Leetcode Challenge/January/All Elements in Two Binary Search Trees.cpp:14
Method
increasingBST
(self, root)
Leetcode Challenge/April/Python/Increasing Order Search Tree.py:2
Method
increasingBST
Leetcode Challenge/April/C++/Increasing Order Search Tree.cpp:28
Method
increasingBST
(TreeNode root)
Leetcode Challenge/April/Java/Increasing Order Search Tree.java:3
Function
indexOfNRecursive
Find a node in LL.cpp:57
Method
inorder
(node)
Leetcode Challenge/April/Python/Increasing Order Search Tree.py:3
Method
inorderTraversal
void inorder(TreeNode* root, vector<int>&s){ if(root->left!=NULL){ inorder(root->left, s); } s.push_back(
Trees/Inorder Traversal Iterative.cpp:54
Function
insertNodeAtPosition
* For your reference: * * SinglyLinkedListNode { * int data; * SinglyLinkedListNode* next; * }; * */
Inserting A Node at a given position in Linked List.c:81
Method
insertWord
Leetcode Challenge/June2k22/cpp/Search Suggestions System.cpp:30
Function
insert_node_into_singly_linked_list
Inserting A Node at a given position in Linked List.c:37
Method
insertionSortList
Leetcode Challenge/December/Insertion Sort List.cpp:13
Method
isEmpty
Stacks and Queues/Queue using LL.cpp:123
Method
isFull
Stacks and Queues/Queue.cpp:63
Method
isInterleave
Leetcode Challenge/June/Interleaving String.cpp:31
Method
isInterleave_helper
Leetcode Challenge/June/Interleaving String.cpp:4
Method
isIsomorphic
(self, s: str, t: str)
Leetcode July Challenge/Python/Isomorphic Strings.py:3
Method
isIsomorphic
Leetcode July Challenge/C++/Isomorphic Strings.cpp:3
Method
isMonotonic
(int[] nums)
Monotonic Array.java:2
Function
isNodePresent
CountNoOfNodesInBTree.cpp:2
Method
isPalindrome
Linked List/Palindrome Linked List.cpp:40
Method
isPalindrome
Leetcode Challenge/June/Palindrome Pairs.cpp:5
Method
isPalindrome
Leetcode Challenge/January/Palindrome Partitioning.cpp:3
Method
isPossible
Trees/Capacity To Ship Packages Within D Days.cpp:3
Method
isPossible
Leetcode Challenge/March/C++/Split Array Largest Sum.cpp:3
Method
isPowerOfTwo
(int n)
Power of 2.java:2
Method
isPowerOfTwo
Leetcode Challenge/December/Power of two.cpp:3
Method
isPrime
(x)
Matrix/Most Frequent Prime.py:6
Method
isRobotBounded
Leetcode Challenge/January/Robot Bounded In Circle.cpp:3
Method
isSubsequence
(String s, String t)
Is Subsequence.java:18
Method
isSubsequence
(self, s: str, t: str)
Leetcode Challenge/March/Python/Is Subsequence.py:2
Method
isSubsequence
Leetcode Challenge/March/C++/Is Subsequence.cpp:22
Method
isSubsequence
(String s, String t)
Leetcode Challenge/March/Java/Is Subsequence.java:2
Method
isValid
(String s)
Check If Word Is Valid After Substitutions.java:4
Method
isValid
(w1, w2)
Strings/Count Prefix and Suffix Pairs I.py:4
Method
isValid
(self, s: str)
Leetcode Challenge/March/Python/Valid Parantheses.py:2
Method
isValid
Leetcode Challenge/March/C++/Valid Parantheses.cpp:3
Method
isValid
(String s)
Leetcode Challenge/March/Java/Valid Parentheses.java:2
Method
isValid
Leetcode Challenge/June/Max Area of Island.cpp:4
Method
isValidNeighbor
funcion to check validility of neighbor
Leetcode Challenge/April/C++/Game of Life.cpp:4
Method
ispalindrome
Leetcode Challenge/April/C++/Valid Palindrome II.cpp:3
Method
jobScheduling
(int[] startTime, int[] endTime, int[] profit)
Dynamic Programming/aximum Profit in Job Scheduling.java:33
Method
judgeSquareSum
(int c)
two pointer/Sum of Square Numbers.java:2
Method
kClosest
Leetcode Challenge/December/K Closest Points to Origin.cpp:3
Method
kInversePairs
Leetcode Challenge/June/K Inverse Pairs Array.cpp:4
Method
kWeakestRows
Leetcode Challenge/March/C++/The K Weakest Rows in a Matrix.cpp:16
Method
kthSmallest
(self, matrix: List[List[int]], k: int)
Leetcode July Challenge/Python/Kth Smallest Element in a Sorted Matrix.py:2
Method
kthSmallest
}
Leetcode July Challenge/C++/Kth Smallest Element in a Sorted Matrix.cpp:18
Method
kthSmallest
Leetcode Challenge/April/C++/Kth Smallest Element in a BST.cpp:17
Method
kthsmallest
(self, A, B)
Trees/Kth Smallest Element In Tree.py:20
Method
ladderLength
Leetcode Challenge/February/cpp/Word Ladder.cpp:3
Function
lastStoneWeight
(self, A)
Leetcode Challenge/April/Python/Last Stone weight.py:1
Method
lastStoneWeight
Leetcode Challenge/April/C++/Last Stone weight.cpp:3
Method
lastStoneWeight
(vector<int>& A)
Leetcode Challenge/April/Java/Last Stone weight.java:1
Method
leafSimilar
Leetcode Challenge/december2k22/Leaf-Similar Trees.cpp:14
Method
lengthOfLIS
(self, nums: List[int])
Leetcode July Challenge/Python/Longest Increasing Subsequence.py:2
Method
lengthOfLIS
Leetcode July Challenge/C++/Longest Increasing Subsequence.cpp:3
Method
lengthOfLinkedList
Leetcode July Challenge/C++/Reverse Nodes in k-Group.cpp:14
Method
lengthOfLongestSubstring
Leetcode Challenge/June2k22/cpp/Longest Substring Without Repeating Characters.cpp:3
Method
levelOrder
Leetcode Challenge/July2K22/cpp/Binary Tree Level Order Traversal.cpp:14
Method
longestCommonPrefix
(self, arr1: List[int], arr2: List[int])
Trie/Find the Length of the Longest Common Prefix.py:37
Method
longestCommonSubsequence
Leetcode Challenge/december2k22/Longest Common Subsequence.cpp:3
Method
longestConsecutive
Leetcode Challenge/June/Longest Consecutive Sequence.cpp:4
Method
longestIncreasingPath
Graphs/Longest Increasing Path in a Matrix.cpp:5
Method
longestOnes
Leetcode Challenge/June/Max Consecutive Ones III.cpp:3
Method
longestOnes
(self, A: List[int], K: int)
Leetcode Challenge/June/Python/Max Consecutive Ones III.py:2
Method
longestStrChain
Leetcode Challenge/June2k22/cpp/Longest String Chain.cpp:3
Method
longestSubarray
(int[] nums, int limit)
Sliding window/Longest Continuous Subarray With Absolute Diff Less Than or Equal to Limit.java:2
Method
lowestCommonAncestor
(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode')
Leetcode July Challenge/Python/Lowest Common Ancestor of a Binary Search Tree.py:11
Method
lowestCommonAncestor
Leetcode July Challenge/C++/Lowest Common Ancestor of a Binary Search Tree.cpp:12
Method
lowestCommonAncestor
Leetcode Challenge/June/Lowest Common Ancestor of a Binary Tree.cpp:12
Method
lowestCommonAncestor
(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode')
Leetcode Challenge/June/Python/Lowest Common Ancestor of a Binary Tree.py:11
Function
main
HashMaps/Minimum Number Of Swaps.cpp:40
Function
main
HashMaps/Sort strings lexicographically according to given sequence of characters.cpp:50
Function
main
HashMaps/Perfect Sum Pair.cpp:82
Function
main
Linked List/Pointers.cpp:5
Function
main
Graphs/Dijkstra's Algorithm.cpp:84
Function
main
Graphs/Get Path-DFS.cpp:83
Function
main
Graphs/Get Path-BFS.cpp:84
Function
main
Graphs/Has Path.cpp:74
Function
main
Graphs/Prim's Algorithm.cpp:82
Function
main
Graphs/All Connected Components.cpp:100
Function
main
Graphs/Kruskals.cpp:104
Function
main
Graphs/Is Connected?.cpp:86
Function
main
Graphs/Beginners/Adjacency List.cpp:22
Function
main
Graphs/Beginners/Adjacency Matrix.cpp:36
Function
main
Recursion/Print all Possible Decodings of a given Digit Sequence.cpp:30
Function
main
Recursion/Print all Permutations.cpp:17
Function
main
Stacks and Queues/QueueSTL.cpp:5
Function
main
Stacks and Queues/Queue.cpp:74
Function
main
Stacks and Queues/Check Redundant Brackets.cpp:48
Function
main
Stacks and Queues/StackSTL.cpp:5
← previous
next →
401–500 of 807, ranked by callers