码迷,mamicode.com
首页 > 编程语言 > 详细

在数组指定索引添加元素的方法

时间:2014-12-10 17:41:11      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   for   on   bs   cti   ad   as   

private string[] InsertArr(string[] str, int index, string value)
{
string[] arr = new string[str.Length + 1];
bool b = false;
for (int i = 0; i < str.Length + 1; i++)
{
if (i == index)
{
arr[i] = value;
b = true;
}
else
{
if (b)
{
arr[i] = str[i - 1];
}
else
{
arr[i] = str[i];
}
}
}
return arr;
}

 

 

public void aa()
{
int[] a = { 1, 2, 3, 4, 5, 4, 3, 2, 1 };
Hashtable ht = new Hashtable();
for (int i = 0; i < a.Length; i++)
{
if (ht.ContainsKey(a[i]))
{
ht.Add(a[i], (int)ht[i] + 1);
}
else
{
ht.Add(a[i], 1);
}
}
string str = "";
foreach (DictionaryEntry item in ht)
{
str += item.Key + ":" + item.Value + " ";
}
}

在数组指定索引添加元素的方法

标签:io   ar   sp   for   on   bs   cti   ad   as   

原文地址:http://www.cnblogs.com/Zing/p/4155874.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!