3975人加入学习
(3人评价)
C#编程-第五季-数据结构和算法-宇宙最简单教程

制作完成于2015年,2021年重新编辑

价格 免费

class Node

{

private T data;//存储数据

private Node<T>next;//指针,用来指向下一个元素

public Node()

{

data = default(T);

next = null;

}

public Node(T value)

{

data = value;

next = null;

}

public Node(T value,Node<T>next)

{

this.data = value;

this.next = next;

}

public Node(Node<T>next)

{

this.next = next

}

public T Data

{

get{return data;}

set{data = value;}

}

public Node<T> Next

{

get{return next;}

set{next = value;}

}

}

[展开全文]

授课教师

SiKi学院老师

课程特色

下载资料(1)
视频(28)

学员动态

HHYrt 加入学习
wff111 完成了 资料.zip
wff111 开始学习 资料.zip
wff111 加入学习
Akemi 加入学习