I didn't know the list has a pop function - that is what I was looking for.
 
Thanks for the help!

[EMAIL PROTECTED] wrote:
What property of the STL stack is important to you?

You can use a Python list as a stack. It has methods append() and
pop() which run in amortized-constant-time. It can be tested for
empty/nonempty in constant time too (if st: # stack is not empty).

Jeff
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to