comprecpp/cppbase/main.cpp
2024-03-08 15:25:16 +08:00

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;
}