最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
链表类具有哈希表的功能
时间:2022-07-02 11:08:42 编辑:袖梨 来源:一聚教程网
using System;
namespace Study
{
///
/// CChain 的摘要说明。
///
public class CChain
{
public class CChainNode
{
public object Data;
public CChainNode NextChainNode;
public CChainNode PreviousChainNode;
public object Tag;
public string Key;
public CChainNode()
{
this.Data=null;
this.Tag=null;
this.Key=null;
this.NextChainNode=this.PreviousChainNode=null;
}
public CChainNode(object vData,object vTag,string vKey)
{
this.Data=vData;
this.Tag=vTag;
this.Key=vKey;
this.NextChainNode=this.PreviousChainNode=null;
}
}
public class CChainIterator
{
private CChainNode pCurrentChainNode,pFirstChainNode,pLastChainNode;
private bool pbFirst,pbLast;
namespace Study
{
///
/// CChain 的摘要说明。
///
public class CChain
{
public class CChainNode
{
public object Data;
public CChainNode NextChainNode;
public CChainNode PreviousChainNode;
public object Tag;
public string Key;
public CChainNode()
{
this.Data=null;
this.Tag=null;
this.Key=null;
this.NextChainNode=this.PreviousChainNode=null;
}
public CChainNode(object vData,object vTag,string vKey)
{
this.Data=vData;
this.Tag=vTag;
this.Key=vKey;
this.NextChainNode=this.PreviousChainNode=null;
}
}
public class CChainIterator
{
private CChainNode pCurrentChainNode,pFirstChainNode,pLastChainNode;
private bool pbFirst,pbLast;
相关文章
- 无主之地4怎么兑换骷髅钥匙码 骷髅钥匙兑换码使用方法 09-15
- 空洞骑士丝之歌掘洞钻在哪弄 掘洞钻获取方式介绍 09-15
- 超级机器人大战Y野花造访花园怎么过 第一章通关流程攻略 09-15
- 原神久岐忍天赋要升到多少级 久岐忍天赋加点攻略 09-15
- 空洞骑士丝之歌螺切刃怎么拿 螺切刃获取方法介绍 09-15
- 超级机器人大战YDKEY怎么买 正版CDKEY购买教程 09-15