Earlier quoted context omitted.
Do you have a simple example of how this is done correctly? I always heard that but comming from Python internal references would be the way to go so it's not natural to me.
Depending on the shape of the graph (arbitrarily connected, DAG, etc.), it just boils down to whatever convenient way you have of storing lists. Node data in one list. Indices of node parents in another list of the same length. If you need to find children quickly, you can have another list of lists containing children indices. The key is to consider the node’s position in the list as its ID, and refer to nodes by th…
Rust Memory Management: Ownership vs. Reference Counting
51–54 of 54 posts
Re: Rust Memory Management: Ownership vs. Reference Counting
#52Earlier quoted context omitted.
Do you have a simple example of how this is done correctly? I always heard that but comming from Python internal references would be the way to go so it's not natural to me.
Depending on the shape of the graph (arbitrarily connected, DAG, etc.), it just boils down to whatever convenient way you have of storing lists. Node data in one list. Indices of node parents in another list of the same length. If you need to find children quickly, you can have another list of lists containing children indices. The key is to consider the node’s position in the list as its ID, and refer to nodes by th…
Re: Rust Memory Management: Ownership vs. Reference Counting
#53Re: Rust Memory Management: Ownership vs. Reference Counting
#54Earlier quoted context omitted.
Depending on the shape of the graph (arbitrarily connected, DAG, etc.), it just boils down to whatever convenient way you have of storing lists. Node data in one list. Indices of node parents in another list of the same length. If you need to find children quickly, you can have another list of lists containing children indices. The key is to consider the node’s position in the list as its ID, and refer to nodes by th…
Thanks. So you basically make pointers manually with your own separated stack. Wouldn't make sense to have the ability to just allocate anew stact you dedicate to a graph and let the ownership system deals with it for you? Seems like a missing abstraction.
Edit: also the simplest way how to do cyclic structures is to heap-allocate via Box and leak memory. Box::leak This is also mentioned in the linked article.