c#判断数组中是否有重复的数据
展开全部
如果想要运行速度快点的呢,可以把数组元素向Hashtable中加入,利用Hashtable来判断。
如:
public bool IsRepeat(string[] yourValue)
{
Hashtable ht = new Hashtable();
for (int i = 0; i < yourValue.Length - 1; i++)
{
if(ht.Contains(yourValue[i]))
{
return true;
}
else
{
ht.Add(yourValue[i], yourValue[i]);
}
}
return false;
}
如:
public bool IsRepeat(string[] yourValue)
{
Hashtable ht = new Hashtable();
for (int i = 0; i < yourValue.Length - 1; i++)
{
if(ht.Contains(yourValue[i]))
{
return true;
}
else
{
ht.Add(yourValue[i], yourValue[i]);
}
}
return false;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public bool IsRepeat(string[] yourValue)
{
bool value = false;
for (int i = 0; i < yourValue.Length - 1; i++)
{
for (int j = 1; j < yourValue.Length - 1; j++)
{
if (yourValue[i] == yourValue[j])
{
value = true;
}
}
}
return value;
}
刚写的代码 只要发现有重复的数据就会返回true
{
bool value = false;
for (int i = 0; i < yourValue.Length - 1; i++)
{
for (int j = 1; j < yourValue.Length - 1; j++)
{
if (yourValue[i] == yourValue[j])
{
value = true;
}
}
}
return value;
}
刚写的代码 只要发现有重复的数据就会返回true
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
轮询呗,很直接,很方便
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询