文件名称:访问链表的第index数据
文件大小:435B
文件格式:CPP
更新时间:2017-01-11 15:15:38
访问链表
truct Node{
int data;
Node*next;
};
struct LinkedList{
Node*head;
int size;
};
//返回指定下标节点的数据引用,目的是按下标访问节点数据
//如果下标不在[0,size-1]范围,引发index异常
//此函数调用可为左只
int &elemAt(const LinkedList&list,const int index){
if(index<0||index>=list.size)throw index;
Node*p=list.head;
for(int i=0;i