请教下关于循环链表的问题
typedef struct node {
int id;
int password;
struct node *next;
}Lnode;
main(){...}
void created(node **p,int n) //创建有n个结点的循环链表p
{
.......
}
想问下上面created函数里的二级指针具体是什么意思呢,作用是什么,望大神详解,非常感谢!
2016-09-20 17:31
2016-09-20 18:06
2016-09-20 18:13