c数据结构 实现单链表的创建、插入、删除、打印和查询
c数据结构 实现单链表的创建、插入、删除、打印和查询
日期:2017-11-29 14:38:56 人气:1
#include
using namespace std;
typedef struct node
{
char data;
struct node *next;
}link;
link * get(link *l, int i)
{
link *p;int j=0;
p=l;
while((jnext!=NULL))
{p=p->next;j++;}
if(j==i)
return p;
else
return NULL;
}