👨‍💻
Cracking-Interview
CtrlK
  • Data Structures and Algorithms
  • Arrays
  • Linked List
    • 1.Odd-Even Linked List
    • 2.Add Two Numbers
    • 3. Insert in a Sorted List
    • 4.Rotate List
    • 5.Palindrome Linked List
    • 6.Point of insertion between two Linked List
    • 7.Delete Node in a Linked List
    • 8.Middle of the Linked List
    • 9.Linked List Cycle
    • 10. Swapping Nodes in a Linked List
    • 11.Swap Nodes in Pairs
    • 12.Merge Two Sorted Lists
    • 13.Reverse a Linked List
    • 14. Reverse Linked List II
    • 15.Copy List with Random Pointer
    • 16.Remove Duplicates from Sorted List
    • 17. Merge k Sorted Lists
    • 18. Remove Nth Node From End of List
    • 19. Sort List
    • 20. Reverse Nodes in k-Group
    • 21. Partition List
    • 22. Flattening a Linked List
    • Basic Implementation of Singly Linked List
    • Basic Implementation of Doubly Linked List
  • Strings
  • Binary Tree
  • Stack and Queue
  • Hash Table
  • Binary Search
  • Binary Search Tree
  • Bit manipulation
  • Graph
  • Disjoint Sets(Union-Find)
  • Heap and Priority Queue
  • Trie
  • Dynamic Programming
  • Greedy Algorithms
  • Backtracking
  • Sub Array and Sliding Window Problems
  • Design
  • Maths
  • Sorting-Algorithms
    • Merge Sort
    • Quick Sort
    • Heap Sort
    • Selection Sort
    • Bubble Sort
    • Insertion Sort
  • Expected Interview MCQ and Questions c++
  • Concepts in C++
  • System Design Questions
  • 💾DBMS
    • Introduction
    • RBMS
    • JOINS
    • SQL
  • 🖥️OS
    • OS and Its Types
    • Process Concept and Threads
    • Process Synchronization
    • Deadlock in Operating System
    • Memory Management
    • Imp Questions of OS for Interviews
  • 🚙OOPS
    • Introduction and Definitions
  • 📨COMPUTER-NETWORKS
    • OSI | TCP IP Model
    • Topology
    • Network Devices
    • IP Address
Powered by GitBook
On this page

Was this helpful?

Linked List

Various problems related to Linked List

Problems in this section:-

Basic Implementation of Singly Linked ListBasic Implementation of Doubly Linked List1.Odd-Even Linked List2.Add Two Numbers3. Insert in a Sorted List4.Rotate List5.Palindrome Linked List6.Point of insertion between two Linked List7.Delete Node in a Linked List8.Middle of the Linked List11.Swap Nodes in Pairs9.Linked List Cycle10. Swapping Nodes in a Linked List12.Merge Two Sorted Lists13.Reverse a Linked List14. Reverse Linked List II15.Copy List with Random Pointer16.Remove Duplicates from Sorted List17. Merge k Sorted Lists18. Remove Nth Node From End of List19. Sort List20. Reverse Nodes in k-Group21. Partition List

PreviousTwo Pointer MethodNext1.Odd-Even Linked List

Last updated 4 years ago

Was this helpful?