Skip to content

Instantly share code, notes, and snippets.

@jasterix
Created August 16, 2020 17:14
Show Gist options
  • Save jasterix/110d0071fb71104ab5661b07ded5ba80 to your computer and use it in GitHub Desktop.
Save jasterix/110d0071fb71104ab5661b07ded5ba80 to your computer and use it in GitHub Desktop.
Implementing a stack with a singly linked list
class Node {
constructor(value){
this.value = value;
this.next = null;
}
}
class Stack {
constructor(){
this.first = null;
this.last = null;
this.size = 0;
}
push(val){
var newNode = new Node(val);
if(!this.first){
this.first = newNode;
this.last = newNode;
} else {
var temp = this.first;
this.first = newNode;
this.first.next = temp;
}
return ++this.size;
}
pop(){
if(!this.first) return null;
var temp = this.first;
if(this.first === this.last){
this.last = null;
}
this.first = this.first.next;
this.size--;
return temp.value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment