单链表类

IT技术2年前 (2022)发布 投稿用户
0

publicclassNode

{
publicTData{get;set;}
publicNodeNext{get;set;}
publicNode(Titem)
{
this.Data=item;
this.Next=null;
}
publicNode()
{
this.Data=default(T);
this.Next=null;
}
}[/mw_shl_code
[mw_shl_code=csharp,true]publicclassLinkList
{
publicNodeHead{get;set;}

C#


publicLinkList()
{
Head=null;
}
///
///添加新元素到链尾
///
///
publicvoidAppend(Titem)
{
Nodefoot=newNode();
NodeA=newNode();
if(Head==null)
{
Head=foot;
return;
}
A=Head;
while(A.Next!=null)
{
A=A.Next;
}
A.Next=foot;
}
///
///删去链表元素
///
publicvoidDelete(inti)
{
if(i==1)//表头
{
Head=Head.Next;
return;
}
NodeA=newNode();
NodeB=newNode();
B=Head;
intj=1;
while(B.Next!=null&&j
{
A=B;
B=B.Next;
j++;
}
if(j==i)
{
A.Next=B.Next;
}
}
///
///核算链表元素个数
///
///
publicintGetLength()
{
Nodep=Head;
intlength=0;
while(p!=null)
{
p=p.Next;
length++;
}
returnlength;
}
///
///判断链表是否为空
///
///
publicboolIsEmpty()
{
if(Head==null)
returntrue;
else
returnfalse;
}
///
///清空链表
///
publicvoidClear()
{
Head=null;
}
///
///获取当前方位的结点值
///
///
///
publicTGetNodeValue(inti)
{
if(IsEmpty()||i<1||i>GetLength())
{
Console.WriteLine(“单链表为空或结点方位有误!”);
returndefault(T);
}
NodeA=newNode();
A=Head;
intj=1;
while(A.Next!=null&&j
{
A=A.Next;
j++;
}
returnA.Data;
}
///
///添加单链表刺进的方位
///
///
///
publicvoidInsert(Titem,intn)
{
if(IsEmpty()||n<1||n>GetLength())
{
Console.WriteLine(“单链表为空或结点方位有误!”);
return;
}
if(n==1)
{
NodeH=newNode();
H.Next=Head;
Head=H;
return;
}
//==========================取n结点的值===============
NodeA=newNode();
NodeB=newNode();
B=Head;
intj=1;
while(B.Next!=null&&j<n)
{
A=B;
B=B.Next;
j++;
}
//end=======================取n结点的值===============
if(j==n)
{
NodeC=newNode(item);
A.Next=C;
C.Next=B;
}
}
}

© 版权声明
好牛新坐标 广告
版权声明:
1、IT大王遵守相关法律法规,由于本站资源全部来源于网络程序/投稿,故资源量太大无法一一准确核实资源侵权的真实性;
2、出于传递信息之目的,故IT大王可能会误刊发损害或影响您的合法权益,请您积极与我们联系处理(所有内容不代表本站观点与立场);
3、因时间、精力有限,我们无法一一核实每一条消息的真实性,但我们会在发布之前尽最大努力来核实这些信息;
4、无论出于何种目的要求本站删除内容,您均需要提供根据国家版权局发布的示范格式
《要求删除或断开链接侵权网络内容的通知》:https://itdw.cn/ziliao/sfgs.pdf,
国家知识产权局《要求删除或断开链接侵权网络内容的通知》填写说明: http://www.ncac.gov.cn/chinacopyright/contents/12227/342400.shtml
未按照国家知识产权局格式通知一律不予处理;请按照此通知格式填写发至本站的邮箱 wl6@163.com

相关文章