#include "node.h" node::node(const int id, node* next) : id(id), next(next) {}