배열에 특정 요소가 있는지 찾고 그 요소의 Index를 알아내는 방법을 소개합니다.
1. find(), distance()를 이용한 방법
std::find(first, last, value)
는 배열의 first와 last 사이에서 value를 찾고 iterator를 리턴합니다.
배열에 찾는 요소가 없을 때는 배열의 끝을 리턴하며, std::end()
와 같은 값을 갖습니다.
std::distance(first, last)
는 배열에서 first와 last의 거리를 리턴하며, first를 배열의 시작, last를 찾은 요소의 iterator를 전달하면 찾은 요소의 Index를 계산할 수 있습니다.
아래와 같은 코드로 배열에 특정 요소를 찾고 Index를 가져올 수 있습니다.
#include <iostream>
#include <algorithm>
int main() {
int arr[] = {9, 8, 7, 6, 5, 4};
int num = 6;
auto it = std::find(std::begin(arr), std::end(arr), num);
if (it != std::end(arr)) {
int index = std::distance(arr, it);
std::cout << "Found, Index: " << index << std::endl;
} else {
std::cout << "Not Found";
}
return 0;
}
Output:
Found, Index: 3
2. 반복문을 이용한 방법
for 반복문으로 순회하면서 요소를 찾을 수 있으며, 이 때 Index도 알 수 있습니다.
#include <iostream>
#include <algorithm>
int main() {
int arr[] = {9, 8, 7, 6, 5, 4};
int num = 6;
int size = sizeof(arr) / sizeof(*arr);
for (int i = 0; i < size; i++) {
if (arr[i] == num) {
std::cout << "Found, Index: " << i << std::endl;
break;
}
}
return 0;
}
Output:
Found, Index: 3
Loading script...
Related Posts
- [C++] 배열을 리스트(list)로 변환
- [C++] 배열에서 특정 요소 제거
- [C++] vector 모든 요소의 합계 계산
- [C++] 두개의 배열이 같은지 비교
- [C++] 배열에 특정 요소가 있는지 확인
- [C++] 2차 배열 복사 방법
- [C++] 배열 복사하는 방법 (copy, memcpy)
- [C++] 함수의 인자로 배열 전달
- [C++] vector 모든 값의 평균 계산
- [C++] vector를 문자열로 변환
- [C++] 배열에서 요소의 Index 찾기
- [C++] 배열의 중복 요소 찾기
- [C++] 배열의 중복 요소 제거
- [C++] 배열 순서 거꾸로 뒤집기
- [C++] char 배열을 string으로 변환
- [C++] string을 char 배열로 변환
- [C++] 문자열 거꾸로 뒤집기
- [C++] vector의 중복 요소 제거
- [C++] 두 배열을 하나의 배열로 합치기
- [C++] 배열 길이, 크기 얻는 방법
- [C++] 배열에서 최대값, 최소값 찾기 (3가지 방법)
- [C++] int를 string으로 변환, 3가지 방법
- [C++] 문자열 리스트(Vector, 배열) 정렬
- [C++] string의 문자 정렬
- [C++] string을 int로 변환, 3가지 방법
- [C++] string 대문자/소문자 변환 방법
- [C++] string.compare() 문자열 비교
- [C++] int를 char로 변환, 3가지 방법
- [C++] 문자열 자르기, 3가지 방법
- [C++] isdigit(), 어떤 문자가 숫자인지 확인
- [C++] strlen(), 문자열 길이 계산
- [C++] strcmp(), strncmp() 함수로 문자열 비교
- [C++] strstr(), 특정 문자열 찾기