16 lines
255 B
C++
16 lines
255 B
C++
#include <iostream>
|
|
#include <string>
|
|
#include "MSkipList.hpp"
|
|
|
|
int main()
|
|
{
|
|
SkipList<int, std::string> skip(12);
|
|
skip.insert(45, "CPP");
|
|
|
|
std::string tmp{};
|
|
if (skip.search(45, tmp)) {
|
|
std::cout << tmp << "\n";
|
|
}
|
|
return 0;
|
|
}
|