Merge pull request #34 from rafadaguiar/master

Tweaked stack sort algorithm discussion.
This commit is contained in:
Donne Martin 2015-08-17 07:08:47 -04:00
commit 679f202c97

View File

@ -62,7 +62,7 @@
"* Our buffer will hold elements in reverse sorted order, smallest at the top\n",
"* Store the current top element in a temp variable\n",
"* While stack is not empty\n",
" * While buffer is empty or buffer top is > than temp\n",
" * While buffer is not empty or buffer top is > than temp\n",
" * Move buffer top to stack\n",
" * Move temp to top of buffer\n",
"* Return buffer\n",