排序列表

简介: 排序列表用SortedList对象表示,用Add()方法会自动将元素插入到适当的位置以保持关键字的顺序 /* Example11_8.cs illustrates the use of a SortedList */ using System; using System.

    排序列表用SortedList对象表示,用Add()方法会自动将元素插入到适当的位置以保持关键字的顺序

/*
  Example11_8.cs illustrates the use of a SortedList
*/

using System;
using System.Collections;

class Example11_8
{

  public static void Main()
  {

    // create a SortedList object
    SortedList mySortedList = new SortedList();

    // add elements containing US state abbreviations and state
    // names to mySortedList using the Add() method
    mySortedList.Add("NY", "New York");
    mySortedList.Add("FL", "Florida");
    mySortedList.Add("AL", "Alabama");
    mySortedList.Add("WY", "Wyoming");
    mySortedList.Add("CA", "California");

    // get the state name value for "CA"
    string myState = (string) mySortedList["CA"];
    Console.WriteLine("myState = " + myState);

    // get the state name value at index 3 using the GetByIndex() method
    string anotherState = (string) mySortedList.GetByIndex(3);
    Console.WriteLine("anotherState = " + anotherState);

    // display the keys for mySortedList using the Keys property
    foreach (string myKey in mySortedList.Keys)
    {
      Console.WriteLine("myKey = " + myKey);
    }

    // display the values for mySortedList using the Values property
    foreach(string myValue in mySortedList.Values)
    {
      Console.WriteLine("myValue = " + myValue);
    }

  }

}
相关文章
|
3天前
按字典顺序排序
按字典顺序排序。
12 2
|
1月前
排序列表
排序列表。
15 3
|
2月前
不排序列表
不排序列表。
30 5
|
2月前
|
NoSQL Java Redis
List集合按照由小到大排序或者由大到小排序
List集合按照由小到大排序或者由大到小排序
20 3
|
4月前
|
存储 语音技术 索引
语音识别,列表的定义语法,列表[],列表的下标索引,从列表中取出来特定的数据,name[0]就是索引,反向索引,头部是-1,my[1][1],嵌套列表使用, 列表常用操作, 函数一样,需引入
语音识别,列表的定义语法,列表[],列表的下标索引,从列表中取出来特定的数据,name[0]就是索引,反向索引,头部是-1,my[1][1],嵌套列表使用, 列表常用操作, 函数一样,需引入
|
6月前
排序和查找
排序和查找
57 0
|
Python
将列表按照指定的规则排序并添加平均值
将列表按照指定的规则排序并添加平均值
68 1
|
JSON 数据格式 Python
一日一技:包含非hashable元素的列表如何去重并保持顺序?
一日一技:包含非hashable元素的列表如何去重并保持顺序?
108 0
|
算法 Python
一日一技:包含元组的列表,对第一个元素升序第二个元素降序
一日一技:包含元组的列表,对第一个元素升序第二个元素降序
99 0
|
JavaScript vr&ar
列表li排序去重的实现与优化
列表li排序去重的实现与优化
98 0
下一篇
无影云桌面