Skip to content

manuel-freire/edalib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

edalib

An STL-like library for use in teaching EDA (algorithms and data-structures). The focus is on readability, correctness and compactness (which aids the former two), and optimal big-O efficiency (except in search trees, which are currently unbalanced). Additionally, all structures can generate traces of their internal state to aid with debugging.

Linear containers

Do not depend on anything else, and provide linear storage. Support the full range of operations, as long as they are efficient for the specific container type.

Derived linear structures

Decorate one of the previous linear containers, allowing fewer operations but providing a cleaner interface.

  • Stack.h: decorates a Vector (could also decorate CVector or DoubleList; since it requires push_back(), it cannot decorate a singly-linked list unless the lists' notion of front and back is reversed). Similar to std::stack.
  • Queue.h: decorates a CVector or Single or DoubleList. Similar to std::queue.
  • Deque.h: decorates a CVector or DoubleList. Similar to std::deque.
Associative containers

Allow quick lookup, addition and removal of elements indexed by a key. Support the full range of associative operations.

Derived associative containers.

Decorate an associative container, allowing fewer operations but with a cleaner interface.

  • Map.h: conventional maps. Use Map<KeyType, ValueType>::T for the tree and Map<KeyType, ValueType>::H for the hash versions.
  • Set.h: conventional sets. Use Set<KeyType>::T for the tree and Set<KeyType>::H for the hash version. Set<KeyType>::T is similar to std::set, while Set<KeyType>::H is similar to std::unordered_set.
Misc. Utilities

All previous files #include Util.h for macros and typedefs.

  • BinTree.h: provides a fully-exposed implementation of binary tree nodes and operations (including pretty-printing). Useful to implement customized trees. Used in the implementation of the TreeMap.
  • Util.h: provides a few useful macros, allows printing out any structure with iterators, and copying into any structure with a push_back() inserter.
Other files
  • test/test.cpp: a miscelaneous set of tests, which is neither exhaustive nor particularly organized. Mostly for testing during development.
  • LICENSE: the BSD 3-clause license, under which edalib is licensed.
  • test/unit.cpp: a collection of unit tests, using the bandit library.
  • doxyfile: to generate documentation. Install doxygen and launch using doxygen doxyfile from the root of the project.
  • SConstruct: to build the tests in a cross-platform manner. Install SCons and launch via scons from the root of the project. Use scons -h to choose suitable targets; for example, scons run_unit will compile and run unit tests, and scons doc will rebuild the documentation.

About

An stl-like library for use in teaching EDA (algorithms and data-structures)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published