This commit is contained in:
enqidu
2020-07-08 20:46:50 +04:00
parent 45b21f2871
commit a5ca794aa4

View File

@@ -10,7 +10,6 @@
#include <cstring>
#include <ctime>
// using namespace std;
using std::vector;
using std::endl;
@@ -23,9 +22,9 @@ using std::endl;
*/
struct Node {
int key;
//pointer of value
// pointer of value
void* value;
//Forward Array
// Forward Array
vector<Node*> forward;
Node(int key, int level, void* value);
};