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
This module is for common and/or fundamental datatypes that should be in the standard library, but not a builtin name (to avoid clutter).
For example, types:
util.Graph: General purpose graph, stored using sorted adjacency lists (or hash tables maybe). Needs to be a good general purpose graph datastructure, with directed edges. Edges and nodes should have a generic object val attribute
util.Queue: General purpose double-ended-queue
util.BST: Binary search tree, for sorted data collection, with range searches
util.Bitset: Set of integers that can be stored efficiently, with a .asmask() function that returns an integer
The text was updated successfully, but these errors were encountered:
This module is for common and/or fundamental datatypes that should be in the standard library, but not a builtin name (to avoid clutter).
For example, types:
util.Graph
: General purpose graph, stored using sorted adjacency lists (or hash tables maybe). Needs to be a good general purpose graph datastructure, with directed edges. Edges and nodes should have a generic objectval
attributeutil.Queue
: General purpose double-ended-queueutil.BST
: Binary search tree, for sorted data collection, with range searchesutil.Bitset
: Set of integers that can be stored efficiently, with a.asmask()
function that returns an integerThe text was updated successfully, but these errors were encountered: