| Interface : Constants : Examples : C API : Structure : Support : Download : Copyright & License : History : Home | Version 2.1.0 | 
Though stacks can be emulated with Python lists, this type provides a simple interface to the data structure, both in Python and in C. Because of the function call overhead calling the methods from Python it is only a tad faster than a corresponding list emulation. Called from within an C extension shows a more significant performance increase. The included stackbench.py gives an impression of how the different methods relate w/r to speed:
mx/Stack> python stackbench.py 1000 100 10 list: 0.24 tuples: 0.15 Stack (with push + pop): 0.17 Stack (with push + pop_many): 0.17 Stack (with << + >>): 0.19 Stack (with push_many + pop_many): 0.17 UserStack: 0.33
Note that the tuple version has a few disadvantages when used for big stacks: for one it uses lots of memory (20 bytes per entry slot; Stack uses 20 bytes + 4 bytes per entry slot) and deallocation can become a problem -- this is done using recursion with one level per stack element. For small stacks it still is unbeatable, though (it has no function call overhead). BTW, the UserStack implementation uses the same technique: the figures shown mainly result from Python method call overhead.
Because stacks are normally used only temporarily, the Stack implementation only grows the memory buffer used for holding the entry slots. It never shrinks it. This has an advantage of reducing malloc overhead when doing e.g. depth first search, but also the disadvantage of using more memory in degenerate cases. To compensate for this, simply call the .resize() method every now and then. It forces the used buffer to be resized.
    
    
     
	  The mxStack package defines the following interfaces.
	 There are two ways to construct a Stack from scratch:
	     
	       
	     A Stack instance has the following methods:
	     
	       
	       
	       
	       
	       
	       
	       
		  You can call this method without argument to force the
		  stack to shrink its memory buffer to the minimal limit
		  needed to hold the contained elements.  
	       
		   
		  An  
	     Note that no method for testing emtpyness is provided. Use
	      len() for that or simply test for trueness, e.g.  
	 
	       
	       
	     
	 Well, there's not much to show:
	 Please have look at the file mxStack.h for
	details.  Basically all of the above Python interfaces are
	also available in the C API.
	 To access the module, do the following (note the
	similarities with Python's way of accessing functions from a
	module):
	 
    
    
     Entries enclosed in brackets are packages (i.e. they are
	directories that include a __init__.py file). Ones
	without brackets are just simple subdirectories that are not
	accessible via  The package Stack imports all symbols from the extension
	mxStack, so  
    
    
     
	  eGenix.com is providing commercial support for this
	  package. If you are interested in receiving information
	  about this service please see the eGenix.com
	  Support Conditions.
     
	  © 1998-2000, Copyright by Marc-André Lemburg;
	  All Rights Reserved.  mailto: mal@lemburg.com
	 
	  © 2000-2004,  Copyright by eGenix.com Software GmbH,
	  Langenfeld, Germany; All Rights Reserved.  mailto: info@egenix.com
	 
	  This software is covered by the eGenix.com Public
	  License Agreement. The text of the license is also
	  included as file "LICENSE" in the package's main directory.
	 
	   By downloading, copying, installing or otherwise using
	  the software, you agree to be bound by the terms and
	  conditions of the eGenix.com Public License
	  Agreement. 
     Changes from version 2.0.3 to 2.1.0:
	 There were no significant changes between 2.0.2 and 2.0.3.
	 Changes from 2.0.0 to 2.0.2:
	 Changes from 0.2.2 to 2.0.0:
	 Changes from 0.1 to 0.2.2:
	 
     
          © 1998-2000, Copyright by Marc-André Lemburg;
          All Rights Reserved.  mailto: mal@lemburg.com
         
          © 2000-2004,  Copyright by eGenix.com Software GmbH; 
          All Rights Reserved.  mailto: info@egenix.com
    Interface
    
	
Stack Constructors
	
	    
	      
		    Stack([initial_size])
		  
		    StackFromSequence(seq)
		  Stack Instance Methods
	
	    
	      
		    push(x)
		    push_many(sequences)sequence from left to
		right onto the stack. If errors occur during this process,
		the already pushed elements are discarded from the stack
		and it returns to its original state.
		    pop()
		    pop_many(n)n elements and returns them in
		form of a tuple. If less than n elements are
		on the stack, the tuple will contain all stack entries and
		the stack will then be empty again. The order is top to
		bottom, i.e. s.pop_many(2) ==
		  (s.pop(),s.pop())
		    as_tuple()
		    as_list()
		    clear()
		    resize([size=len(stack)])size
		entries.
		
		    __getitem__(index)index works just like for Python lists,
		  i.e. negative indices are normalized using the current
		  length of the Stack.
		IndexError is raised for invalid
		  indices. This makes the Stack compatible to the
		  for-loop statement allowing you to iterate
		  over the Stack contents from bottom to top.
	      while
		s: print s.pop() will loop as long as there are
	      elements left on the Stack s. This is much faster than going
	      through the method calling process -- even when the method
	      being called is written in C.
	    Constants
	
	    
	      
		    Error
		    EmptyErrorExamples of Use
    
	
from mx.Stack import *
s = Stack()
for i in range(1000):
    s.push(i)
while s:
    print s.pop()
# which could also be done as:
s = StackFromSequence(range(1000))
while s:
    print s.pop()
# or a little different
s = StackFromSequence(range(1000))
print s.as_tuple()
print s.as_list()
	
    Supported Data Types in the C-API
    
	
#include "mxStack.h"
...
    PyObject *v;
    /* Import the mxStack module */
    if (mxStack_ImportModuleAndAPI())
	goto onError;
    /* Access functions from the exported C API through mxStack */
    v = mxStack.Stack(0);
    if (!v)
	goto onError;
    /* Type checking */
    if (mxStack_Check(v))
        printf("Works.\n");
    Py_DECREF(v);
...
	
	Package Structure
    
	
[Stack]
	mxStack
	
	import. These are used for
	compiling the C extension modules which will get installed in
	the same place where all your other site specific extensions
	live (e.g. /usr/local/lib/python-x.xx/site-packages).
	import Stack; s = Stack.Stack() gives
	you a Stack instance in s.
	Support
    
	
Copyright & License
    
	
History & Future