实现跳表

实现跳表 1 #include <stdio.h> 2 #include <stdlib.h> 3 #define CASE_NUM 20000 4 #define LEVEL 10 5 6 struct Node 7 { 8 int value; 9 int level; 10 struct Node* down_p; 11
相关文章
相关标签/搜索