Not to do with the lookup issue, but with your creation of Nodes using new. If the map owns the Nodes, as it seems to do in your case, you can sinmply sinply say:
map <int, Node> mymap; // map of Nodes, not pointers to Nodes
...
myMap[i] = Node( whatever );
This will greatly simplify your memory management. In C++ you should avoid explicit dynamic memory allocation with new wherever possible.
