You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One use case of my red-black tree had over 140k individual allocations. Would this structure be improved if it had an underlying batch allocation structure?
The array's solution to this is exponential growth but an array of node*'s would require reallocations and data movement. Perhaps a linked-list "pool" of progressively larger allocations?
The text was updated successfully, but these errors were encountered:
One use case of my red-black tree had over 140k individual allocations. Would this structure be improved if it had an underlying batch allocation structure?
The array's solution to this is exponential growth but an array of node*'s would require reallocations and data movement. Perhaps a linked-list "pool" of progressively larger allocations?
The text was updated successfully, but these errors were encountered: