MCPcopy Create free account
hub / github.com/SuprDewd/CompetitiveProgramming / node

Method node

code/data-structures/avl_map.cpp:5–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3 struct node {
4 K key; V value;
5 node(K k, V v) : key(k), value(v) { }
6 bool operator <(const node &other) const {
7 return key < other.key; } };
8 avl_tree<node> tree;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected