TheAlgorithms / PHP

All Algorithms implemented in PHP
MIT License
2.15k stars 468 forks source link

Shouldn't use an Array for the Stack implementation #151

Closed Nicolascanala closed 7 months ago

Nicolascanala commented 7 months ago

Hi,

Wondering if it'd make more sense to use a doubly linked list for the stack implementation due to the dynamic sizing nature of Stacks?

Please let me know if you agree.

Thanks for this repo!