Better Programming

Advice for programmers.

Data Structures: Improving Time Complexity on Stacks and Queues

Samuel Guo
Better Programming
Published in
10 min readFeb 24, 2020

--

Photo by noor Younis on Unsplash

Background

Inspiration

Stack and Queue Class Overview

let array = new StackQueueArray()
array.push(10)
array.push(20)
array.push(30)
console.log(array) // [10, 20, 30]
console.log(array.headIndex) // 0
console.log(array) // [10, 20, 30]
console.log(array.headIndex) // 0
array.shift()
console.log(array) // [null, 20, 30]
console.log(array.headIndex) // 1
array.shift() 
console.log(array) // [null, null, 30]
console.log(array.headIndex) // 2

Push and Pop Functions

Shift, Head, and Tail Functions

Edge Cases Galore

Edge case 1

Edge case 2

Edge case 3

Edge case 4

Edge case 5

cleanUp() Method

console.log(array) 
// [null, null, null, null, null, null, null, null, null, 10, 20]
array.cleanUp()
console.log(array) // [10, 20]

Edge case 6

Time Complexity of the StackQueueArray Class

Conclusion

--

--

Samuel Guo
Samuel Guo

Written by Samuel Guo

Full stack software developer with experience in Javascript, React, Redux, and Ruby on Rails and a background in Mechanical Engineering.

Responses (1)