会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
我思考..我存在..
好好学习..天天向上.. 159753258 楼上我老婆,楼下是我! 呼叫中心、小型信息管理系统,电话:13516218837
博客园
首页
新随笔
联系
管理
订阅
LinkedListGeneric
LinkedList<T>
and
LinkedListNode<T>
Class Diagram
code
1
using
System;
2
using
System.Collections.Generic;
3
class
Program
4
{
5
6
static
void
Main()
7
{
8
LinkedList
<
int
>
linkedList
=
new
LinkedList
<
int
>
();
9
linkedList.AddFirst(
1
);
10
linkedList.AddAfter(linkedList.First,
2
);
11
linkedList.AddBefore(linkedList.Last,
3
);
12
linkedList.AddLast(
4
);
13
Console.WriteLine(linkedList.Count);
14
Console.ReadKey();
15
}
16
}
posted @
2007-05-11 10:04
南守拥
阅读(
159
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告