C 언어의 find 함수 사용법에 대한 자세한 설명
C 언어의 find() 함수
find 함수는 배열에서 특정 요소의 위치를 찾는 데 사용됩니다. .
예: [0, 0, 5, 4, 4] 배열이 있습니다.
질문: 찾기 함수의 반환 값은 2입니다.
find(배열 이름 + 시작 위치) 요소 찾기, 배열 이름 + 검색을 종료할 요소 위치, 찾으려는 요소)
직접 코드:
#include <iostream> #include <vector> #include <algorithm>//注意要包含该头文件 using namespace std; int main() { int nums[] = { 3, 1, 4, 1, 5, 9 }; int num_to_find = 5; int start = 0; int end = 5; int* result = find( nums + start, nums + end, num_to_find ); if( result == nums + end ) { cout<< "Did not find any number matching " << num_to_find << endl; } else { cout<< "Found a matching number: " << *result << endl; } return 0; }
추천 학습: c 언어 비디오 튜토리얼
위 내용은 C 언어의 찾기 기능 사용법에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!