top | item 35795939

(no title)

nmsmith | 2 years ago

> building a tree in Rust will do a lot of reference counting

This isn't true in most cases. If every subtree is only referenced by its (unique) parent, then you can use a standard Rust "Box", which means that during compilation, the compiler inserts calls to malloc() (when the Box is created) and free() (when the Box goes out of scope). There will be no reference counting — or any other overhead — at runtime.

discuss

order

pjmlp|2 years ago

Tree based structures with root ownership are very constrained as general purpose data structure.