|
|
|
|
|
by jnordwick
2538 days ago
|
|
The linked list is just an lowest common denminator example. I think he and others (and me when I bring it up) mean mutually linking data strauctures. Almost any kind of data structure in Rust is extremely painful to do efficiently. You either go the unsafe route of you drowned in a sea of boxes and cells. On Reddit recently somebody gave the ludicrous claim that you shouldn't have to write your own data structures in rust - the rust system library should have everything you need. |
|
It's unfortunate that a lot of teaching programmer has people implement data structures from scratch. It gives the false impression that that's what programming is largely about.