Create a stack by using linkedListThe key is to use shift and unshift methods for stack.push and stack.pop.Apr 26, 2021Apr 26, 2021
Synchronous vs AsyncronousThe best way I’ve ever heard to explian synchronous and Asyncronous in javascript is:Apr 24, 2021Apr 24, 2021
How to reverse a LinkedListFirst, you need 2 nodes: prev, current. The order now is prev-> current. What we want to do is to change the order to current -> prev.Apr 24, 2021Apr 24, 2021