Amazon Prime




 

7 Posts tagged with LINKED LIST

  • Data Structure
  • Linked List
  • Linked List Data Structure

    A Linked List is a linear data structure consisting of nodes where each node has corresponding data and a pointer to the next node

  • Data Structure
  • Stack
  • Linked List
  • Stack Implementation Using Linked List

    Stack is a linear data structure to store and manipulate data which follows LIFO (Last In First Out) order during adding and removing elements in it.

  • DSA Problems
  • Sorting
  • Linked List
  • Data Structures & Algorithms Problems

    Remove Duplicates From Sorted List - Given a sorted linked list, delete all duplicates such that each element appear only once

  • DSA Problems
  • Linked List
  • Two Pointer Technique
  • Data Structures & Algorithms Problems

    k’th Node from End of Linked List - Given a linked list LL and a positive integer k, find the kth node from the end of the list.

  • DSA Problems
  • Linked List
  • Two Pointer Technique
  • Data Structures & Algorithms Problems

    Middle Element of the Linked List-Given a linked list of integers, return the middle element of the linked list.

     

     
    ...