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
For a lot of algorithms that use linked lists and binary trees, I often repeat the same struct for each respectively, set up an example, and then create the same helpers (usually print and delete or something). These helpers and struct definitions get repeated a lot, so it might make sense to factor them out into utilities, or even use the homemade data structures in this repository (though for some problems that might not be possible, given problem-specific modifications).
The text was updated successfully, but these errors were encountered:
For a lot of algorithms that use linked lists and binary trees, I often repeat the same
struct
for each respectively, set up an example, and then create the same helpers (usually print and delete or something). These helpers andstruct
definitions get repeated a lot, so it might make sense to factor them out into utilities, or even use the homemade data structures in this repository (though for some problems that might not be possible, given problem-specific modifications).The text was updated successfully, but these errors were encountered: