From 94338f527bcd26191ed9136722cb7fba985c4233 Mon Sep 17 00:00:00 2001 From: enqidu Date: Tue, 7 Jul 2020 13:43:27 +0400 Subject: [PATCH] skip_list --- data_structures/skip_list.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/data_structures/skip_list.cpp b/data_structures/skip_list.cpp index 31e6d06f4..603d1f2c3 100644 --- a/data_structures/skip_list.cpp +++ b/data_structures/skip_list.cpp @@ -9,10 +9,12 @@ #include #include #include -using namespace std; #define MAXLVL 2 #define P 0.5 + +using std::endl; +using std::vector; /**