A data structure is a way of organizing data in a fashion that allows particular properties of that data to be queried and/or updated efficiently.
2
votes
1answer
68 views
+50
Efficient way to manipulate a large (doesn't fit into memory) graph
I need to maintain a large directed graph G, with possibly millions of nodes and edges. Potentially it may not fit in memory.
Some frequent operations I need to perform on this graph include:
Each ...