Nate's Work
- Built the beginnings of a family tree with parent, children and spouse relationships
example output:
>>> ./family-tree
name: nate father: greg mother: laurie wife: wifey kid: child1 kid: child2 %
- Tried to modify my heap implementation to better use malloc and define my structures as pointers rather than direct references to reduce verbosity.
- Code compiled but kept running in to this error at run-time:
>>> /binary-heap
[1] 28417 bus error ./binary-heap
- I realize this has something to do with mis-allocating memory or calling to the wrong address. Fiddled around with some of the naming conventions, got a seg fault at some point but couldn't make the errors go away.