摘要: 概念 主要参考C#数据结构一书 线性表和顺序表代码线性表接口using System;using System.Collections.Generic;using System.Text;namespace CSharpDemo{ public interface ILinearList<T> { int GetLength(); void Clear(); bool IsEmpty(); void Append(T item); void Insert(T item, int i); void... 阅读全文
posted @ 2012-01-09 14:33 忧忧夏天 阅读(393) 评论(0) 推荐(0) 编辑