typedef struct kvNode { int key; int value; struct kvNode* next; } kvNode_t; typedef struct { int size;