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

判断数组中是否有重复的数据

时间:2018-03-12 17:10:08      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:pos   return   table   gpo   post   repeat   判断   contain   val   

 

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;
}

 

判断数组中是否有重复的数据

标签:pos   return   table   gpo   post   repeat   判断   contain   val   

原文地址:https://www.cnblogs.com/mutare/p/8549602.html

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