skip_list

This commit is contained in:
enqidu 2020-07-07 14:48:30 +04:00
parent 2fb95a2bf3
commit 420915fa0d

View File

@ -9,6 +9,8 @@
#include <vector>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
// using namespace std;
using std::vector;
using std::endl;
@ -59,6 +61,8 @@ SkipList::SkipList() {
}
/**
* Returns random level for skip list;
*/
@ -187,4 +191,6 @@ int main()
lst.displayList();
}