亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

利用C#怎么獲取 List集合中的重復值

發布時間:2020-12-08 15:00:34 來源:億速云 閱讀:4152 作者:Leah 欄目:開發技術

今天就跟大家聊聊有關利用C#怎么獲取 List集合中的重復值,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

一、獲取集合內重復值

public void GetDuplicateValue()
{
  List<string> lisA = new List<string> { "A", "B", "C", "A" };
  //方式一 借助字典
  Dictionary<string, int> dic = new Dictionary<string, int>();
  lisA.ForEach(x =>
  {
    if (dic.ContainsKey(x))
      dic[x] += 1;
    else
      dic[x] = 0;
  });
  List<string> lisDupValues = dic.Where(x => x.Value > 0).Select(x => x.Key).ToList(); //結果{"A"}
 
  //方式二
  List<string> lisDupValues2 = lisA.GroupBy(x => x).Where(x => x.Count() > 1).Select(x => x.Key).ToList(); //結果{"A"}
 
  //方式三 等同于方式二
  List<string> lisDupValues3 = (from r in lisA group r by r into g where g.Count() > 1 select g.Key).ToList(); //結果{"A"}
}

由上述可看出方式二、三的寫法非常簡潔。便去Microsoft官網了解下了,又發現了許多新的東西,Linq還真是挺好用的

二、單個集合操作

1、All、Any

public void All_Any()
{
  List<string> lisA = new List<string> { "A", "B", "C", "A" };
  //All:確定序列中的所有元素是否都滿足條件
  bool all = lisA.All(x => x.Equals("B")); //結果 false
 
  //Any:確定序列中的任何元素是否存在或滿足條件。
  bool any = lisA.Any(x => x.Equals("B")); //結果 true
}

2、Sum、Average、Distinct、Max、Min、Skip、Take、ToDictionary

public void Sum_Average_Distinct_Max_Min_Skip_Take_ToDictionary()
{
  List<int> lisA = new List<int> { 1, 2, 2, 3 };
 
  //Sum:計算數值序列的和。
  double sum = lisA.Sum(); //結果 8
 
  //Average:計算數值序列的平均值。
  double average = lisA.Average(); //結果 2
 
  //Distinct:返回序列中的非重復元素
  List<int> distinctLisA = lisA.Distinct().ToList(); //結果 {1,2,3}
 
  //Max:返回值序列中的最大值。
  double max = lisA.Max(); //結果 3
 
  //Min:返回值序列中的最小值。
  double min = lisA.Min(); //結果 1
 
  //Select:將序列中的每個元素投影到新表單。
  var query = lisA.Select((age, index) => new { index, jn = age + 1 }); //結果:{index=0,jn=2},{index=1,jn=3},{index=2,jn=3},{index=3,jn=4}
 
  //Skip:跳過序列中指定數量的元素,然后返回剩余的元素。
  List<int> lowerGrades = lisA.Skip(3).ToList(); //結果 {3}
 
  //Take:從序列的開頭返回指定數量的相鄰元素。
  List<int> task = lisA.Take(2).ToList(); //結果 {1,2}
 
  //ToDictionary:根據指定的鍵選擇器函數、比較器和元素選擇器函數,從 IEnumerable<T> 創建一個 Dictionary<TKey,TValue>。
  var dic = lisA.Distinct().ToDictionary(x => x); //結果 {{1,1},{2,2},{3,3}}
}

三、集合間運算

1、Concat、Except、Intersect、Union、Zip

public void Concat_Except_Intersect_Union_Zip()
{
  List<string> lisA = new List<string> { "A", "B", "C", "A" };
  List<string> lisB = new List<string> { "A", "B", "H", "K" };
 
  //Concat:連接兩個序列。
  List<string> query = lisA.Concat(lisB).ToList(); //結果 { "A", "B", "C", "A" ,"A", "B", "H", "K"}
 
  //Except:生成兩個序列的差集。
  List<string> onlyInLisASet = lisA.Except(lisB).ToList();  //結果 {"C"}
 
  //Intersect:生成兩個序列的交集。
  List<string> duplicates = lisA.Intersect(lisB).ToList(); //結果 {"A","B"}
 
  //Union:生成兩個序列的并集。
 
  List<string> union = lisA.Union(lisB).ToList(); //結果 { "A", "B", "C", "H", "K"}
 
  //Zip:將指定函數應用于兩個序列的對應元素,以生成結果序列。
    List<string> zip=lisA.Zip(lisB, (first, second) => first + " " + second).ToList(); //結果 { "A A", "B B", "C H", "A K" }
}

補充知識:c#中List的元素遍歷(foreach)和去重復(distinct)

一、準備工作

定義實體類people

  public List<People> PeopleList { get; set; }

  public class People
  {
    public string Name { get; set; }
    public int Age { get; set; }
  }

實體比較help類

  public delegate bool CompareDelegate<T>(T x, T y);
  public class ListCompare<T> : IEqualityComparer<T>
  {
    private CompareDelegate<T> _compare;
    public ListCompare(CompareDelegate<T> d)
    {
      this._compare = d;
    }

    public bool Equals(T x, T y)
    {
      if (_compare != null)
      {
        return this._compare(x, y);
      }
      else
      {
        return false;
      }
    }

    public int GetHashCode(T obj)
    {
      return obj.ToString().GetHashCode();
    }
  }

二、List.ForEach()

假設需要對集合中的每個元素進行運算(將每個人的年齡增加10歲)

  PeopleList.ForEach(p=>{
    p.Age = p.Age + 10;
  });

三、List.Distinct()

假設需要將姓名和年齡相同的元素過濾掉

  PeopleList.Distinct(new Common.List.ListCompare<People>(
    (x,y)=> x.Name==y.Name&&x.Age==y.Age)
    );

解析:

ListCompare類用來比較List中的兩個元素。它的構造函數中需要傳入一個CompareDelegate。

可以看出,兩個元素的比較,重點在CompareDelegate中。

定義: public delegate bool CompareDelegate(T x, T y);

其實,ListCompare實現了IEqualityComparer接口。

看完上述內容,你們對利用C#怎么獲取 List集合中的重復值有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業資訊頻道,感謝大家的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

夏河县| 姚安县| 昆山市| 新绛县| 鹿邑县| 枞阳县| 怀集县| 岗巴县| 大埔区| 砚山县| 会理县| 崇左市| 手游| 清涧县| 叙永县| 郸城县| 青州市| 宜春市| 农安县| 仲巴县| 铁力市| 桂阳县| 英超| 胶州市| 方山县| 益阳市| 弥勒县| 夏津县| 小金县| 崇文区| 望都县| 石城县| 昌图县| 曲阜市| 延津县| 霍山县| 青州市| 清远市| 靖宇县| 监利县| 乳山市|