diff --git a/data_structures/skip_list.cpp b/data_structures/skip_list.cpp index 37839dfdb..6159506a0 100644 --- a/data_structures/skip_list.cpp +++ b/data_structures/skip_list.cpp @@ -6,6 +6,7 @@ * help of hierarchy of linked lists that connect increasingly sparse subsequences of the items * * References used: GeeksForGeeks skip list code, https://iq.opengenus.org/skip-list/ PseudoCode and Code + * @author enqidu * . */