index
:
c_utils
develop
maps
master
rope
Basic c utility functions/data structures.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
collections
/
map
Age
Commit message (
Expand
)
Author
2020-07-24
Fix map AVL rotations
Tucker Evans
2020-07-21
Add remove to header and documentation for maps
Tucker Evans
2020-07-21
Add AVL checks to map remove
Tucker Evans
2020-07-21
Fix map remove
Tucker Evans
2020-07-21
Fix map avl rotations
Tucker Evans
2020-07-18
Add basic remove to maps
Tucker Evans
2020-07-18
Fix move map free functions within src for function declarations.
Tucker Evans
2020-07-08
Fix implement AVL rotations/rebalancing on map insertions
Tucker Evans
2020-07-08
Fix which rotates should be done for map rebalance
Tucker Evans
2020-07-08
Fix check for null sub trees before setting parent during map rotation
Tucker Evans
2020-07-08
Fix return on null tree for map balance factor
Tucker Evans
2020-07-08
Add rebalance function for map trees
Tucker Evans
2020-07-08
Fix map size was returning +1 for NULL leaves
Tucker Evans
2020-07-08
Add rotate functions for map trees
Tucker Evans
2020-07-08
Fix key comparisons where backwards
Tucker Evans
2020-07-08
Fix separate base map type from tree structure (nodes)
Tucker Evans
2020-07-08
Add check key ptr for map to ease memory management of keys
Tucker Evans
2020-07-08
Add note on NULL keys
Tucker Evans
2020-07-08
Fix rename map_reset_key to map_set_key
Tucker Evans
2020-07-08
Fix map insert error returns
Tucker Evans
2020-07-08
Add balance factor computation for map nodes
Tucker Evans
2020-07-08
Add height helper function for maps
Tucker Evans
2020-07-08
Fix access node's key not passed key for maps index/insert
Tucker Evans
2020-07-08
Add index function for maps
Tucker Evans
2020-07-08
Add reset key function for maps
Tucker Evans
2020-07-08
Add insert function for maps
Tucker Evans
2020-07-08
Add new_from_parent function for maps
Tucker Evans
2020-07-08
Add clear & free functions for maps
Tucker Evans
2020-07-08
Add size function for maps
Tucker Evans
2020-07-08
Add constructor for maps
Tucker Evans
2020-07-08
Add structs/typedefs for maps
Tucker Evans