diff --git a/data_structures/skip_list.cpp b/data_structures/skip_list.cpp index 1fc9f3e0e..b7aab7882 100644 --- a/data_structures/skip_list.cpp +++ b/data_structures/skip_list.cpp @@ -10,7 +10,6 @@ #include #include -// 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 forward; Node(int key, int level, void* value); };