일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- k-eta
- scanf
- 입출력 패턴
- Django란
- 장고란
- 2557
- 알고리즘 공부방법
- string 함수
- string 메소드
- Django의 편의성
- 연결요소
- 백준
- EOF
- double ended queue
- Django Nodejs 차이점
- getline
- vscode
- iOS14
- 엑셀
- correlation coefficient
- 매크로
- UI한글변경
- 구조체와 클래스의 공통점 및 차이점
- 프레임워크와 라이브러리의 차이
- 표준 입출력
- 입/출력
- 시간복잡도
- 자료구조
- 이분그래프
- c++
Archives
- Today
- Total
Storage Gonie
(9) C++ algorithm헤더의 count 함수 본문
반응형
# int cout (InputIterator first, InputIterator last, const T& val)
- Iterable한 것(배열, 스트링 등)에서 값 val이 몇 개 존재하는지 개수를 반환함
- #include <algorithm> 을 포함시켜주어야 함
# 이 함수의 인자로 사용되는 값을 이해하기 위한 예시코드
- iterator(배열 혹은 스트링)에다가 begin, end를 붙여주면 주소값을 가리키는듯 하다.
여기에 + 혹은 -를 해주면 다음 혹은 이전 원소가 있는 주소를 가리키게됨.
#include <iostream>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
string s = "abc";
cout << *s.begin() << endl; // 'a' 출력
cout << *(s.begin()+1) << endl; // 'b' 출력
cout << *(s.end()-1) << endl; // 'c' 출력
cout << *s.end() << endl; // '' 출력(아무것도 출력하지 않음)
}
# 정수 배열에서 숫자 6의 개수를 카운트하는 예시코드
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
// 첫 번째 방법
int a[] = {1, 2, 3, 4, 5, 6, 6};
cout << count(a, a+7, 6) << endl; // 2 출력 여기서 7은 원소의 개수를 의미함
// 두 번째 방법
vector<int> myvector(a, a+7);
int cnt = count(myvector.begin(), myvector.end(), 6); // begin, end는 벡터에서 사용되는 표현인가봄
cout << cnt << endl; // 2 출력
}
# string에서 알파벳 개수를 카운트하는 예시코드
#include <iostream>
#include <algorithm>
using namespace std;
int main(void)
{
ios::sync_with_stdio(false);
string s;
cin >> s;
for (int i = 'a'; i <= 'z' ; i++)
{
cout << count(s.begin(), s.end(), i) << ' '; // 1 1 0 0 1 0 0 0 ..... 0 0 0
}
}
반응형
'알고리즘 > 문제해결을 위한 C++ 공부' 카테고리의 다른 글
(11) C++ vector 사용법 (0) | 2019.04.25 |
---|---|
(10) C++ algorithm헤더의 find 함수 (0) | 2019.04.25 |
(8) C++ 구조체 사용방법(구조체, 클래스 차이점) (0) | 2019.04.22 |
(7) C++을 사용하여 문제 해결시 주의할 점 (0) | 2019.04.20 |
(6) C++ char 형 사용법 한번에 끝내기 (1) | 2019.04.20 |
Comments