skipmap
skipmap copied to clipboard
Documentation for preds and succs
https://github.com/zhangyunhao116/skipmap/blob/fd4ece9e59b79b85915c4e3c7de744be1ec18898/skipmap.tpl#L63 In this comment, it said preds[i].key > key >= succs[i].key.
But in the paper, it's
which implies the relation is preds[i].key < key <= succs[i].key
Am I understand correctly? I check the findNode and findNodeDelete. The code corresponds to the code in the paper.
Oh, so the generated code's comment is corresponding to descending order?