The Coding Challenges
-
LinkedList Creation & Traversal
-
Delete a node in Linkedlist
-
Middle of a LinkedList (Efficiently)
-
Reverse a LinkedList (Recursive)
-
Print a random number in a LinkedList
-
Reverse a stack using recursion You are not allowed to use loop constructs like while, for..etc, and you can only use the following ADT functions on Stack S: isEmpty(S) push(S) pop(S)
7)Reverse a String using Stack
-
Rotate a Linkedlist by k
-
Swap two varibales without using temp Variable