When diving back into programming and thinking about my future as a developer and engineer, I was reminded by other career developers that employers value candidates who understand the fundamentals of algorithms and data structures. A key as...
Read More...Tags: tech, data_structures_algorithms
A stack is a fundamental data structure that follows the Last-In-First-Out (LIFO) principle. One way to think about a stack is to compare it to a Pez Dispenser holding Pez candies. If you’re unfamiliar wit...
Read More...Tags: tech, data_structures_algorithms
A queue data structure is like a line of people waiting. A queue is an example of a First-In-First-Out (FIFO) data structure. Queues are very useful when there is an order of operations that must be followe...
Read More...Tags: tech, data_structures_algorithms