두개의 리스트가 서로 같은 요소를 갖고 있는지, 같은지 비교하는 방법을 소개합니다.
1. SequenceEqual()를 이용한 방법
Enumerable.SequenceEqual(list1, list2)
는 list1과 list2가 동일한 요소를 갖고 있고, 같은 순서로 저장되어있을 때 true를 리턴합니다.
모두 같은 요소들을 갖고 있지만, 저장 순서는 다를 때는 false를 리턴합니다.
아래와 같이 두 리스트가 같은지 비교를 할 수 있습니다.
using System;
namespace Example {
public class Program {
public static void Main(string[] args) {
List<int> list1 = new List<int>() {1, 2, 3, 4, 5};
List<int> list2 = new List<int>() {1, 2, 3, 4, 5};
List<int> list3 = new List<int>() {5, 4, 3, 2, 1};
bool result = Enumerable.SequenceEqual(list1, list2);
Console.WriteLine("list1 == list2 ? " + result);
result = Enumerable.SequenceEqual(list1, list3);
Console.WriteLine("list1 == list3 ? " + result);
}
}
}
Output:
list1 == list2 ? True
list1 == list3 ? False
만약 list1
이 null이 아니라면, list1.SequenceEqual()
처럼 리스트에서 직접 함수를 호출하여 다른 리스트와 비교할 수 있습니다.
List<int> list1 = new List<int>() {1, 2, 3, 4, 5};
List<int> list2 = new List<int>() {1, 2, 3, 4, 5};
List<int> list3 = new List<int>() {5, 4, 3, 2, 1};
bool result = list1.SequenceEqual(list2);
Console.WriteLine("list1 == list2 ? " + result);
result = list1.SequenceEqual(list3);
Console.WriteLine("list1 == list3 ? " + result);
Output:
list1 == list2 ? True
list1 == list3 ? False
2. 순서는 무시하고, 같은 요소를 갖고 있는지 비교
리스트에 요소가 저장된 순서를 비교하지 않고, 단순히 두개의 리스트가 서로 동일한 요소들을 갖고 있는지만 비교하여 같음을 비교하고 싶을 때가 있습니다.
이럴 때는, 먼저 리스트를 정렬하고 그 다음에 SequenceEqual()
로 비교하면 됩니다.
아래 예제에서 OrderBy()
는 리스트를 정렬하는 함수이며, 정렬할 때 어떤 key를 사용할 것인지 함수로 key 정보를 알려줘야 합니다.
using System;
namespace Example {
public class Program {
public static void Main(string[] args) {
List<int> list1 = new List<int>() {1, 2, 3, 4, 5};
List<int> list2 = new List<int>() {1, 2, 3, 4, 5};
List<int> list3 = new List<int>() {5, 4, 3, 2, 1};
bool result = Enumerable.SequenceEqual(
list1.OrderBy(a => a), list2.OrderBy(a => a));
Console.WriteLine("list1 == list2 ? " + result);
result = Enumerable.SequenceEqual(
list1.OrderBy(a => a), list3.OrderBy(a => a));
Console.WriteLine("list1 == list3 ? " + result);
}
}
}
Output:
list1 == list2 ? True
list1 == list3 ? True
3. Contains()를 이용한 방법 (순서 무시)
List.Contains()
는 리스트에 어떤 요소가 있을 때 true를 리턴합니다.
Contains()
를 이용하여 순서는 무시하고 리스트에 동일 요소가 있는지 확인할 수 있습니다.
아래와 같이 리스트의 길이가 다르면 서로 다르다고 판단하고, 길이가 같으면 Contains()
로 모든 요소가 다른 리스트에 있는지 확인합니다.
using System;
namespace Example {
public class Program {
public static bool isEqual(List<int> list1, List<int> list2) {
if (list1.Count() != list2.Count()) {
return false;
}
foreach (var n in list1) {
if (!list2.Contains(n)) {
return false;
}
}
return true;
}
public static void Main(string[] args) {
List<int> list1 = new List<int>() {1, 2, 3, 4, 5};
List<int> list2 = new List<int>() {1, 2, 3, 4, 5};
List<int> list3 = new List<int>() {5, 4, 3, 2, 1};
List<int> list4 = new List<int>() {1, 2, 4, 8, 16};
Console.WriteLine(isEqual(list1, list2));
Console.WriteLine(isEqual(list1, list3));
Console.WriteLine(isEqual(list1, list4));
}
}
}
Output:
True
True
False
Loading script...
Related Posts
- C# 바이트(Byte) 배열을 문자열로 변환
- C# String.format() 함수 알아보기
- C# - foreach (Array, List, Dictionary)
- C# 프로퍼티(Property) Get/Set 함수
- C# - Dictionary에서 key, value 가져오기
- C# - Dictionary 순회, foreach, for 루프
- C# - Dictionary에서 key, value 삭제
- C# - Dictionary.add()로 데이터 추가
- C# - Dictionary 선언 및 초기화
- C# - 문자열을 Double, Float으로 변환
- C# - 문자열을 리스트로 변환
- C# - 두 날짜/시간 비교, DateTime.Compare()
- C# - 날짜 계산, DateTime 시간 더하기 빼기
- C# - 날짜 문자열을 DateTime으로 변환
- C# - Sleep, 몇 초간 지연시키기
- C# - Timestamp(millisecond)를 DateTime 객체로 변환
- C# - 현재 시간 가져오기, DateTime
- C# - 문자열 리스트를 문자열로 변환
- C# - 리스트 복사 (얕은 복사, 깊은 복사)
- C# - 2차원 리스트 선언 및 초기화
- C# - 리스트 선언 및 초기화
- C# - 리스트 길이, 크기 가져오기
- C# - 리스트 합계, 평균 계산
- C# - 리스트 요소 제거 (RemoveAt, RemoveAt, RemoveAll)
- C# - 리스트에서 빈 문자열, null 제거
- C# - 리스트 두개로 분리, n개로 나누기
- C# - 문자열 뒤집기, Reverse()
- C# - 2차원 배열 복사, Clone
- C# - 문자열 배열을 문자열로 변환
- C# - 2차원 배열 선언, 초기화 방법
- C# - 배열 길이, 2차원 배열 길이
- C# - 두개의 배열을 하나로 합치기
- C# - 배열 중복 요소 제거
- C# - 배열에서 특정 요소 제거
- C# - Int 배열 정렬 (오름차순, 내림차순)