"C++ 벡터 값 인덱스 찾기"의 두 판 사이의 차이

태그: 되돌려진 기여
3번째 줄: 3번째 줄:
;C++ 벡터 값 인덱스 확인
;C++ 벡터 값 인덱스 확인


<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int getIndex(vector<int> v, int value) {
    return find(v.begin(), v.end(), value) - v.begin();
}
int main() {
    vector<int> v = {11, 1, 12, 2};
    cout << getIndex(v, 2) << endl; // 3
    cout << getIndex(v, 3) << endl; // -1 (not exists)
}
</syntaxhighlight>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int getIndex(vector<int> v, int value) {
    auto it = find(v.begin(), v.end(), value);
    return it - v.begin();
}
int main() {
    vector<int> v = {11, 1, 12, 2};
    cout << getIndex(v, 2) << endl; // 3
    cout << getIndex(v, 3) << endl; // -1 (not exists)
}
</syntaxhighlight>
<syntaxhighlight lang='cpp' run>
<syntaxhighlight lang='cpp' run>
#include <iostream>
#include <iostream>

2023년 9월 17일 (일) 15:45 판

1 개요

C++ 벡터 값 위치 확인
C++ 벡터 값 인덱스 확인
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int getIndex(vector<int> v, int value) {
    return find(v.begin(), v.end(), value) - v.begin();
}

int main() {
    vector<int> v = {11, 1, 12, 2};
    cout << getIndex(v, 2) << endl; // 3
    cout << getIndex(v, 3) << endl; // -1 (not exists)
}
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int getIndex(vector<int> v, int value) {
    auto it = find(v.begin(), v.end(), value);
    return it - v.begin();
}

int main() {
    vector<int> v = {11, 1, 12, 2};
    cout << getIndex(v, 2) << endl; // 3
    cout << getIndex(v, 3) << endl; // -1 (not exists)
}
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int getIndex(vector<int> v, int value) {
    auto it = find(v.begin(), v.end(), value);
    return it==v.end() ? -1 : it-v.begin();
}

int main() {
    vector<int> v = {11, 1, 12, 2};
    cout << getIndex(v, 2) << endl; // 3
    cout << getIndex(v, 3) << endl; // -1 (not exists)
}

2 같이 보기

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}