Skip to content

Latest commit

 

History

History

7. Linked List

Linked List

  1. Insert, Delete, Print Operation on LinkedList Problem.
    Solution
    Command:-

    $ go run 1.check-balanced-parenthesis-solution.go 
    Method TimeComplexity SpaceComplexity Source
    Using Slice O(N) O(1) Link
  2. Recursive Reverse Linked List Problem.
    Question
    Solution
    Command:-

    $ go run 2.recursive-reverse-linked-list-solution.go
    Method TimeComplexity SpaceComplexity Source
    Recursive O(N) O(1) Link