資源簡介
C#新手教程(五):數據結構與算法
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
namespace?UnilateralismChainTable
{
????//??結點類
????public?class?ListNode
????{
????????public?ListNode(int?NewValue)
????????{
????????????Value?=?NewValue;
????????}
????????//前一個
????????public?ListNode?Previous;
????????//?后一個
????????public?ListNode?Next;
????????//?值
????????public?int?Value;
????}
????//?定義結點之后,開始類線性表的操作編程了.在LIST?類中采用了,Head?Tail??Current,三個指針,使用Append?,
????//MoveFristMovePrevious,MoveNextMoveLast?DeleteInsertAscendingInsertUnAscending?Clear?實現移動,添加,
????//刪除升序插入,降序插入,清空鏈表操作,GetCurrentValue()?方法取得當前的值。
????public?class?Clist
????{
????????public?Clist()
????????{
????????????//構造函數
????????????//初始化
????????????ListCountValue?=?0;
???
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????6144??2010-11-02?15:43??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\bin\Debug\UnilateralismChainTable.dll
?????文件??????19968??2010-11-02?15:43??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\bin\Debug\UnilateralismChainTable.pdb
?????文件???????7551??2009-03-13?15:26??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\Clist.cs
?????文件???????1766??2010-11-02?15:43??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\obj\Debug\UnilateralismChainTable.csproj.FileListAbsolute.txt
?????文件???????6144??2010-11-02?15:43??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\obj\Debug\UnilateralismChainTable.dll
?????文件??????19968??2010-11-02?15:43??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\obj\Debug\UnilateralismChainTable.pdb
?????文件???????1378??2009-02-27?11:05??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\Properties\AssemblyInfo.cs
?????文件???????2521??2009-02-27?11:07??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable\UnilateralismChainTable.csproj
?????文件????????959??2009-02-27?11:05??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable.sln
????..A..H.?????32256??2010-11-02?15:44??06?數據結構與算法\01?數據結構的實現\001?單向鏈表的實現-例1\UnilateralismChainTable\UnilateralismChainTable.suo
?????文件???????7680??2009-02-27?11:09??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\bin\Debug\BothChainTable.dll
?????文件??????26112??2009-02-27?11:09??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\bin\Debug\BothChainTable.pdb
?????文件???????2508??2009-02-27?11:09??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\BothChainTable.csproj
?????文件??????12590??2009-02-27?11:09??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\Doubleli
?????文件????????592??2009-02-27?11:09??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\obj\Debug\BothChainTable.csproj.FileListAbsolute.txt
?????文件???????7680??2009-02-27?11:09??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\obj\Debug\BothChainTable.dll
?????文件??????26112??2009-02-27?11:09??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\obj\Debug\BothChainTable.pdb
?????文件???????1360??2009-02-27?11:08??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable\Properties\AssemblyInfo.cs
?????文件????????932??2009-02-27?11:08??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable.sln
????..A..H.?????31744??2010-11-02?15:45??06?數據結構與算法\01?數據結構的實現\002?雙向鏈表的實現-例1\BothChainTable\BothChainTable.suo
?????文件???????4608??2009-02-27?13:19??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\bin\Debug\StackApply.dll
?????文件??????13824??2009-02-27?13:19??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\bin\Debug\StackApply.pdb
?????文件???????5632??2009-02-27?11:07??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\bin\Debug\UnilateralismChainTable.dll
?????文件??????17920??2009-02-27?11:07??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\bin\Debug\UnilateralismChainTable.pdb
?????文件???????2928??2009-02-27?13:19??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\CStack.cs
?????文件???????2599??2009-02-27?13:19??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\obj\Debug\ResolveAssemblyReference.cache
?????文件????????653??2009-02-27?13:19??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\obj\Debug\StackApply.csproj.FileListAbsolute.txt
?????文件???????4608??2009-02-27?13:19??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\obj\Debug\StackApply.dll
?????文件??????13824??2009-02-27?13:19??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\obj\Debug\StackApply.pdb
?????文件???????1352??2009-02-27?11:11??06?數據結構與算法\01?數據結構的實現\003?堆棧的實現-例1\StackApply\StackApply\Properties\AssemblyInfo.cs
............此處省略645個文件信息
評論
共有 條評論