基本信息
源码名称:C#实现的数据结构源码
源码大小:0.09M
文件格式:.rar
开发语言:C#
更新时间:2023-06-01
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
C#实现的数据结构源码
//编写算法,在二叉树中查找值为value的结点 public Node<T> Search(Node<T> root, T value) { Node<T> p = root; if (p == null) { return null; } if (!p.Data.Equals(value)) { return p; } if ...
文件清单
└── DataStructure
├── ArrayDs
│ ├── ArrayDs.cs
│ ├── ArrayDs.csproj
│ ├── CityDistance.cs
│ ├── GuessNumber.cs
│ ├── IArray.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── spmaxtrixApp.cs
│ ├── tupletype.cs
│ └── 复件 GuessNumber.cs
├── BinaryTreeDs
│ ├── BinaryTreeDs.csproj
│ ├── HNode.cs
│ ├── HuffmanTree.cs
│ ├── LinkBiSearchTree.cs
│ ├── LinkBiTreeApp.cs
│ ├── LinkBiTree.cs
│ ├── Node.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── DataStructure
│ ├── DataStructure.csproj
│ ├── DataStructure.csproj.user
│ ├── DisplayNumber.cs
│ ├── FindPhoneNumber.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── StoredStucture.cs
├── DataStructure.sln
├── DataStructure.suo
├── Graph
│ ├── GraphAdjListApp.cs
│ ├── GraphAdjList.cs
│ ├── GraphAdjMatrix.cs
│ ├── GraphAdjMaxtixApp.cs
│ ├── Graph.csproj
│ ├── IGraph.cs
│ ├── Node.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── ListDs
│ ├── CLinkList.cs
│ ├── DbNode.cs
│ ├── DLinkList.cs
│ ├── ILinarList.cs
│ ├── ListDs.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SeqListApp.cs
│ ├── SeqList.cs
│ ├── SLinkList.cs
│ ├── SNode.cs
│ ├── SortArith.cs
│ ├── SortSeqList.cs
│ └── StuNode.cs
├── QueueDs
│ ├── BankQueueApp.cs
│ ├── CSeqBankQueue.cs
│ ├── CSeqQueue.cs
│ ├── IBankQueue.cs
│ ├── IQueue.cs
│ ├── LinkBankQueue.cs
│ ├── LinkQueue.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QueueDs.csproj
│ └── QueueNode.cs
├── SearchDS
│ ├── OlympicsSearchApp.cs
│ ├── OlympicsSearch.cs
│ ├── OlyNode.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SearchArithMetic.cs
│ ├── SearchDsApp.cs
│ └── SearchDS.csproj
├── SortDs
│ ├── OlympicsSortApp.cs
│ ├── OlympicsSort.cs
│ ├── OlyNode.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RadixNode.cs
│ ├── SortArithMetic.cs
│ ├── SortDsApp.cs
│ └── SortDs.csproj
├── StackDs
│ ├── IStack.cs
│ ├── LinkStack.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SeqStack.cs
│ ├── StackApp.cs
│ ├── StackDs.csproj
│ ├── StackNode.cs
│ ├── TrainArrangeByLinkStack.cs
│ └── TrainArrangeBySeqStack.cs
├── StringDs
│ ├── IString.cs
│ ├── OneToHunderdQ.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SeqString.cs
│ └── StringDs.csproj
└── TreeDS
├── CLTree.cs
├── CSTree.cs
├── MLTree.cs
├── PCLTree.cs
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── PTree.cs
├── TreeDS.csproj
├── TreeDS.sln
└── TreeDS.suo
23 directories, 95 files
C#实现的数据结构源码
//编写算法,在二叉树中查找值为value的结点 public Node<T> Search(Node<T> root, T value) { Node<T> p = root; if (p == null) { return null; } if (!p.Data.Equals(value)) { return p; } if ...
文件清单
└── DataStructure
├── ArrayDs
│ ├── ArrayDs.cs
│ ├── ArrayDs.csproj
│ ├── CityDistance.cs
│ ├── GuessNumber.cs
│ ├── IArray.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── spmaxtrixApp.cs
│ ├── tupletype.cs
│ └── 复件 GuessNumber.cs
├── BinaryTreeDs
│ ├── BinaryTreeDs.csproj
│ ├── HNode.cs
│ ├── HuffmanTree.cs
│ ├── LinkBiSearchTree.cs
│ ├── LinkBiTreeApp.cs
│ ├── LinkBiTree.cs
│ ├── Node.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── DataStructure
│ ├── DataStructure.csproj
│ ├── DataStructure.csproj.user
│ ├── DisplayNumber.cs
│ ├── FindPhoneNumber.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── StoredStucture.cs
├── DataStructure.sln
├── DataStructure.suo
├── Graph
│ ├── GraphAdjListApp.cs
│ ├── GraphAdjList.cs
│ ├── GraphAdjMatrix.cs
│ ├── GraphAdjMaxtixApp.cs
│ ├── Graph.csproj
│ ├── IGraph.cs
│ ├── Node.cs
│ └── Properties
│ └── AssemblyInfo.cs
├── ListDs
│ ├── CLinkList.cs
│ ├── DbNode.cs
│ ├── DLinkList.cs
│ ├── ILinarList.cs
│ ├── ListDs.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SeqListApp.cs
│ ├── SeqList.cs
│ ├── SLinkList.cs
│ ├── SNode.cs
│ ├── SortArith.cs
│ ├── SortSeqList.cs
│ └── StuNode.cs
├── QueueDs
│ ├── BankQueueApp.cs
│ ├── CSeqBankQueue.cs
│ ├── CSeqQueue.cs
│ ├── IBankQueue.cs
│ ├── IQueue.cs
│ ├── LinkBankQueue.cs
│ ├── LinkQueue.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── QueueDs.csproj
│ └── QueueNode.cs
├── SearchDS
│ ├── OlympicsSearchApp.cs
│ ├── OlympicsSearch.cs
│ ├── OlyNode.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SearchArithMetic.cs
│ ├── SearchDsApp.cs
│ └── SearchDS.csproj
├── SortDs
│ ├── OlympicsSortApp.cs
│ ├── OlympicsSort.cs
│ ├── OlyNode.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RadixNode.cs
│ ├── SortArithMetic.cs
│ ├── SortDsApp.cs
│ └── SortDs.csproj
├── StackDs
│ ├── IStack.cs
│ ├── LinkStack.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SeqStack.cs
│ ├── StackApp.cs
│ ├── StackDs.csproj
│ ├── StackNode.cs
│ ├── TrainArrangeByLinkStack.cs
│ └── TrainArrangeBySeqStack.cs
├── StringDs
│ ├── IString.cs
│ ├── OneToHunderdQ.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SeqString.cs
│ └── StringDs.csproj
└── TreeDS
├── CLTree.cs
├── CSTree.cs
├── MLTree.cs
├── PCLTree.cs
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── PTree.cs
├── TreeDS.csproj
├── TreeDS.sln
└── TreeDS.suo
23 directories, 95 files