การใช้ LINQ จากList<int>
ฉันจะเรียกรายการที่มีรายการซ้ำกันมากกว่าหนึ่งครั้งและค่าของพวกเขาได้อย่างไร
การใช้ LINQ จากList<int>
ฉันจะเรียกรายการที่มีรายการซ้ำกันมากกว่าหนึ่งครั้งและค่าของพวกเขาได้อย่างไร
คำตอบ:
วิธีที่ง่ายที่สุดในการแก้ปัญหาคือการจัดกลุ่มองค์ประกอบตามค่าของพวกเขาแล้วเลือกตัวแทนของกลุ่มหากมีองค์ประกอบมากกว่าหนึ่งองค์ประกอบในกลุ่ม ใน LINQ สิ่งนี้แปลเป็น:
var query = lst.GroupBy(x => x)
.Where(g => g.Count() > 1)
.Select(y => y.Key)
.ToList();
หากคุณต้องการทราบจำนวนองค์ประกอบที่ซ้ำกันคุณสามารถใช้:
var query = lst.GroupBy(x => x)
.Where(g => g.Count() > 1)
.Select(y => new { Element = y.Key, Counter = y.Count() })
.ToList();
สิ่งนี้จะส่งคืนList
ชนิดที่ไม่ระบุชื่อและแต่ละองค์ประกอบจะมีคุณสมบัติElement
และCounter
เพื่อดึงข้อมูลที่คุณต้องการ
และสุดท้ายถ้าเป็นพจนานุกรมที่คุณต้องการคุณสามารถใช้
var query = lst.GroupBy(x => x)
.Where(g => g.Count() > 1)
.ToDictionary(x => x.Key, y => y.Count());
สิ่งนี้จะส่งคืนพจนานุกรมโดยที่องค์ประกอบของคุณเป็นกุญแจและจำนวนครั้งที่มีการทำซ้ำเป็นค่า
code
สำหรับ (int i = 0; i <replates.Count; i ++) {int ซ้ำ = ซ้ำกัน [i]; ซ้ำซ้อนตำแหน่งเพิ่ม (ซ้ำรายการใหม่ <int> ()); สำหรับ (int k = 0; k <hitsList.Length; k ++) {ถ้า (hitsList [k] .Contains (ซ้ำ)) {ซ้ำatesLocation.ElementAt (i) .Value.Add (k); }} // ลบรายการที่ซ้ำกันตามกฎบางอย่าง }code
ค้นหาว่าสิ่งที่นับได้มีซ้ำกันหรือไม่ :
var anyDuplicate = enumerable.GroupBy(x => x.Key).Any(g => g.Count() > 1);
ค้นหาว่าค่าทั้งหมดในการแจกแจงเป็นค่าเฉพาะหรือไม่ :
var allUnique = enumerable.GroupBy(x => x.Key).All(g => g.Count() == 1);
วิธีอื่นใช้HashSet
:
var hash = new HashSet<int>();
var duplicates = list.Where(i => !hash.Add(i));
หากคุณต้องการค่าที่ไม่ซ้ำในรายการที่ซ้ำกันของคุณ:
var myhash = new HashSet<int>();
var mylist = new List<int>(){1,1,2,2,3,3,3,4,4,4};
var duplicates = mylist.Where(item => !myhash.Add(item)).Distinct().ToList();
นี่คือโซลูชันเดียวกับวิธีการขยายทั่วไป:
public static class Extensions
{
public static IEnumerable<TSource> GetDuplicates<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> selector, IEqualityComparer<TKey> comparer)
{
var hash = new HashSet<TKey>(comparer);
return source.Where(item => !hash.Add(selector(item))).ToList();
}
public static IEnumerable<TSource> GetDuplicates<TSource>(this IEnumerable<TSource> source, IEqualityComparer<TSource> comparer)
{
return source.GetDuplicates(x => x, comparer);
}
public static IEnumerable<TSource> GetDuplicates<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> selector)
{
return source.GetDuplicates(selector, null);
}
public static IEnumerable<TSource> GetDuplicates<TSource>(this IEnumerable<TSource> source)
{
return source.GetDuplicates(x => x, null);
}
}
List<int> { 1, 2, 3, 4, 5, 2 }
เป็นแหล่งที่มาผลลัพธ์จะเป็นIEnumerable<int>
องค์ประกอบหนึ่งที่มีค่า1
(ซึ่งค่าที่ซ้ำกันที่ถูกต้องคือ 2)
Console.WriteLine("Count: {0}", duplicates.Count());
ด้านล่างลงไปและพิมพ์6
ออกมา ยกเว้นว่าฉันขาดอะไรบางอย่างเกี่ยวกับข้อกำหนดของฟังก์ชันนี้ควรมีเพียง 1 รายการในการรวบรวมผลลัพธ์
ToList
เพื่อแก้ไขปัญหา แต่หมายความว่าวิธีการจะดำเนินการทันทีที่เรียกว่าและไม่ใช่เมื่อคุณทำซ้ำมากกว่าผลลัพธ์
var hash = new HashSet<int>();
var duplicates = list.Where(i => !hash.Add(i));
จะนำไปสู่รายการที่มีรายการซ้ำทั้งหมด ดังนั้นหากคุณมีการเกิดขึ้นสองครั้งที่สองในรายการของคุณรายการที่ซ้ำกันของคุณจะมีการเกิดขึ้นสองครั้งที่ 2 เนื่องจากมีเพียงหนึ่งในสองรายการที่สามารถเพิ่มลงใน HashSet หากคุณต้องการให้รายการของคุณมีค่าที่ไม่ซ้ำกันสำหรับแต่ละรายการที่ซ้ำกันให้ใช้รหัสนี้แทน:var duplicates = mylist.Where(item => !myhash.Add(item)).ToList().Distinct().ToList();
คุณสามารถทำได้:
var list = new[] {1,2,3,1,4,2};
var duplicateItems = list.Duplicates();
ด้วยวิธีการต่อไปนี้:
public static class Extensions
{
public static IEnumerable<TSource> Duplicates<TSource, TKey>(this IEnumerable<TSource> source, Func<TSource, TKey> selector)
{
var grouped = source.GroupBy(selector);
var moreThan1 = grouped.Where(i => i.IsMultiple());
return moreThan1.SelectMany(i => i);
}
public static IEnumerable<TSource> Duplicates<TSource, TKey>(this IEnumerable<TSource> source)
{
return source.Duplicates(i => i);
}
public static bool IsMultiple<T>(this IEnumerable<T> source)
{
var enumerator = source.GetEnumerator();
return enumerator.MoveNext() && enumerator.MoveNext();
}
}
การใช้ IsMultiple () ในวิธีการทำซ้ำเร็วกว่า Count () เนื่องจากจะไม่ทำซ้ำการรวบรวมทั้งหมด
Count()
มีการคำนวณไว้ล่วงหน้าและโซลูชันของคุณน่าจะช้ากว่า
Count()
] จึงแตกต่างจากการวนซ้ำรายการทั้งหมด Count()
ถูกคำนวณล่วงหน้า แต่วนซ้ำรายการทั้งหมดไม่ได้
ฉันสร้างส่วนขยายเพื่อตอบสนองต่อสิ่งนี้คุณสามารถรวมไว้ในโครงการของคุณได้ฉันคิดว่านี่จะเป็นกรณีที่พบมากที่สุดเมื่อคุณค้นหารายการที่ซ้ำกันในรายการหรือ Linq
ตัวอย่าง:
//Dummy class to compare in list
public class Person
{
public int Id { get; set; }
public string Name { get; set; }
public string Surname { get; set; }
public Person(int id, string name, string surname)
{
this.Id = id;
this.Name = name;
this.Surname = surname;
}
}
//The extention static class
public static class Extention
{
public static IEnumerable<T> getMoreThanOnceRepeated<T>(this IEnumerable<T> extList, Func<T, object> groupProps) where T : class
{ //Return only the second and next reptition
return extList
.GroupBy(groupProps)
.SelectMany(z => z.Skip(1)); //Skip the first occur and return all the others that repeats
}
public static IEnumerable<T> getAllRepeated<T>(this IEnumerable<T> extList, Func<T, object> groupProps) where T : class
{
//Get All the lines that has repeating
return extList
.GroupBy(groupProps)
.Where(z => z.Count() > 1) //Filter only the distinct one
.SelectMany(z => z);//All in where has to be retuned
}
}
//how to use it:
void DuplicateExample()
{
//Populate List
List<Person> PersonsLst = new List<Person>(){
new Person(1,"Ricardo","Figueiredo"), //fist Duplicate to the example
new Person(2,"Ana","Figueiredo"),
new Person(3,"Ricardo","Figueiredo"),//second Duplicate to the example
new Person(4,"Margarida","Figueiredo"),
new Person(5,"Ricardo","Figueiredo")//third Duplicate to the example
};
Console.WriteLine("All:");
PersonsLst.ForEach(z => Console.WriteLine("{0} -> {1} {2}", z.Id, z.Name, z.Surname));
/* OUTPUT:
All:
1 -> Ricardo Figueiredo
2 -> Ana Figueiredo
3 -> Ricardo Figueiredo
4 -> Margarida Figueiredo
5 -> Ricardo Figueiredo
*/
Console.WriteLine("All lines with repeated data");
PersonsLst.getAllRepeated(z => new { z.Name, z.Surname })
.ToList()
.ForEach(z => Console.WriteLine("{0} -> {1} {2}", z.Id, z.Name, z.Surname));
/* OUTPUT:
All lines with repeated data
1 -> Ricardo Figueiredo
3 -> Ricardo Figueiredo
5 -> Ricardo Figueiredo
*/
Console.WriteLine("Only Repeated more than once");
PersonsLst.getMoreThanOnceRepeated(z => new { z.Name, z.Surname })
.ToList()
.ForEach(z => Console.WriteLine("{0} -> {1} {2}", z.Id, z.Name, z.Surname));
/* OUTPUT:
Only Repeated more than once
3 -> Ricardo Figueiredo
5 -> Ricardo Figueiredo
*/
}
ในการค้นหาค่าที่ซ้ำกันเท่านั้น:
var duplicates = list.GroupBy(x => x.Key).Any(g => g.Count() > 1);
เช่น. รายการ var = new [] {1,2,3,1,4,2};
ดังนั้นจัดกลุ่มตามจะจัดกลุ่มตัวเลขด้วยปุ่มของพวกเขาและจะรักษาจำนวน (จำนวนครั้งที่ทำซ้ำ) ไว้ด้วย หลังจากนั้นเราแค่ตรวจสอบค่าที่ทำซ้ำมากกว่าหนึ่งครั้ง
ในการค้นหาค่า uniuqe เท่านั้น:
var unique = list.GroupBy(x => x.Key).All(g => g.Count() == 1);
เช่น. รายการ var = new [] {1,2,3,1,4,2};
ดังนั้นจัดกลุ่มตามจะจัดกลุ่มตัวเลขด้วยปุ่มของพวกเขาและจะรักษาจำนวน (จำนวนครั้งที่ทำซ้ำ) ไว้ด้วย หลังจากนั้นเราเพียงตรวจสอบค่าที่ทำซ้ำเพียงครั้งเดียวหมายความว่าไม่ซ้ำกัน
var unique = list.Distinct(x => x)
ชุด Linq ไปเป็นส่วนขยาย SQL ของฟังก์ชั่นที่ซ้ำซ้อนที่ตรวจสอบใน MS SQL Server โดยไม่ใช้. ToList () หรือ IEnumerable แบบสอบถามเหล่านี้ดำเนินการใน SQL Server มากกว่าในหน่วยความจำ . ผลลัพธ์จะกลับมาที่หน่วยความจำเท่านั้น
public static class Linq2SqlExtensions {
public class CountOfT<T> {
public T Key { get; set; }
public int Count { get; set; }
}
public static IQueryable<TKey> Duplicates<TSource, TKey>(this IQueryable<TSource> source, Expression<Func<TSource, TKey>> groupBy)
=> source.GroupBy(groupBy).Where(w => w.Count() > 1).Select(s => s.Key);
public static IQueryable<TSource> GetDuplicates<TSource, TKey>(this IQueryable<TSource> source, Expression<Func<TSource, TKey>> groupBy)
=> source.GroupBy(groupBy).Where(w => w.Count() > 1).SelectMany(s => s);
public static IQueryable<CountOfT<TKey>> DuplicatesCounts<TSource, TKey>(this IQueryable<TSource> source, Expression<Func<TSource, TKey>> groupBy)
=> source.GroupBy(groupBy).Where(w => w.Count() > 1).Select(y => new CountOfT<TKey> { Key = y.Key, Count = y.Count() });
public static IQueryable<Tuple<TKey, int>> DuplicatesCountsAsTuble<TSource, TKey>(this IQueryable<TSource> source, Expression<Func<TSource, TKey>> groupBy)
=> source.GroupBy(groupBy).Where(w => w.Count() > 1).Select(s => Tuple.Create(s.Key, s.Count()));
}
มีคำตอบ แต่ฉันไม่เข้าใจว่าทำไมไม่ทำงาน
var anyDuplicate = enumerable.GroupBy(x => x.Key).Any(g => g.Count() > 1);
ทางออกของฉันเป็นเช่นนั้นในสถานการณ์นี้;
var duplicates = model.list
.GroupBy(s => s.SAME_ID)
.Where(g => g.Count() > 1).Count() > 0;
if(duplicates) {
doSomething();
}