1721-swapping-nodes-in-a-linked-list Time: 2 ms (59.92%), Space: 58.1 MB (78.44%) - LeetHub Jun 30, 2024 1791-find-center-of-star-graph Time: 28 ms (14.34%), Space: 74.6 MB (20.99%) - LeetHub Jun 28, 2024 1863-sum-of-all-subset-xor-totals Attach NOTES - LeetHub May 21...
Commits BreadcrumbsHistory for leetcode Find the first node of loop in linked list - GFG onmain User selector All users DatepickerAll time Commit History Loading Footer © 2025 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact Manage cookies Do not share...
Added README.md file for Linked List Cycle Sep 4, 2023 152-maximum-product-subarray Time: 4 ms (86.97%) | Memory: 13.8 MB (60.46%) - LeetSync Jul 27, 2023 1613-find-critical-and-pseudo-critical-edges-in-minimum-spanning-tree
Check if Linked List is Palindrome.java Check if a given graph is tree or not.java Check if a string is repetition of its substring of k-length.java Check if all leaves are at same level.java Check if array is sorted.java ...
Building Ultimate Data Structure and Algorithms in C++ Solution Repository. Solution to various DSA problems including problem from Leetcode, Codechef, GFG, Coding Ninjas. - Kanav-Arora/DSA-Guide
Linked List Create Count LL nodes.cpp Jul 1, 2024 Maths Create Multiplication_under_modulo.cpp Jul 1, 2024 Recursion Create print 1 to N .cpp Jul 1, 2024 Stacks Create Implement Stack using Array.cpp Jul 4, 2024 Strings Update Reverse Words.cpp Jul 1, 2024 ...
Flatten A Binary Tree to Linked List Flatten A Binary Tree.cpp Flatten A Binary Tree 2.cpp Longest ZigZag Path in a Binary Tree README.md Code.cpp Maximum Width of Binary Tree README.md Code.cpp Burn Tree Burn Tree.cpp Traversals of Binary Tree Bottom View BT.cpp Left View BT...
linked-list mathematical-analysis matrix palindrome pattern-searching queue randomized-algorithm recursion searching-sorting stack string-algorithm string 001.md 002.md 003.md 004.md 005.md 006.md 007.md 008.md 009.md 010.md 011.md 012.md ...
Delete node in Doubly Linked List.cpp Duplicate Subtrees.cpp Edit Distance.py Extract the Number from the String.cpp Facing the sun.py Find length of Loop.py Find maximum volume of a cuboid.cpp Form a palindrome.cpp Identical Linked Lists.cpp Integral Points Inside Triangle.cpp...
}// } Driver Code Ends /* node for linked list:struct Node { int data; struct Node* next; Node(int x) { data = x; next = NULL; } };*/class Solution { public: Node* reverse(Node* head){ Node* prev=NULL; Node* current=head; ...