Difference between revisions of "DataStructures"

From SourceWiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
[[Category:Pragmatic Programming]]
 +
''''Data Structures: Designing your program''''
  
 +
=Introduction=
 +
 +
<pre>
 +
svn co http://soutce.ggy.bris.ac.uk/subversion-open/data-structures/trunk ./data-structures
 +
</pre>
 +
 +
=Stacks=
 +
 +
<pre>
 +
cd examples/example1
 +
make
 +
./simple-stack.exe
 +
</pre>
 +
 +
=Linked Lists=
 +
 +
=Hash Tables=
 +
 +
=Trees=
  
 
http://en.wikipedia.org/wiki/Quadtree
 
http://en.wikipedia.org/wiki/Quadtree
 +
 +
=The C++ Standard Template Library=

Revision as of 17:47, 23 February 2010

'Data Structures: Designing your program'

Introduction

svn co http://soutce.ggy.bris.ac.uk/subversion-open/data-structures/trunk ./data-structures

Stacks

cd examples/example1
make
./simple-stack.exe

Linked Lists

Hash Tables

Trees

http://en.wikipedia.org/wiki/Quadtree

The C++ Standard Template Library