有序字典
摘要:
/*有序字典SortedDictionary类的使用,它是一个二叉搜索树它比SortedList的元素插入和删除速度比较快。SortedList的内存比它占用的要少,在已排序的数据填充集合时SortedList要快。*/using System.Collections.Generic;namespace Frank{ public class Test { //程序入口 public static void Main(string[] args) { SortedDictionary sd = new SortedDictionary(); sd.A... 阅读全文
posted @ 2013-12-06 15:21 wp456 阅读(169) 评论(0) 推荐(0)
浙公网安备 33010602011771号