Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 월별 카운트
- C++
- Avr
- Post
- Join
- mathemetica
- PORTG
- 강좌
- 단축키
- SQL
- array
- 현재언어
- selectc
- unalias
- function
- mysql
- php
- solution
- 하이퍼 터미널
- 점점변하는값
- 파일존재
- is_array
- 0x
- Call
- android studio
- Get
- application.mk
- Java
- cocos2d-x
- halliday
Archives
- Today
- Total
코딩도사의 코드정리
순열 본문
vector<int> v; vector<char> select; void back(int order) { if(select.size() == v.size()) { for(int i=0; i<select.size(); i++) { cout << v[select[i]] << ", "; } cout << endl; } else { for(int i=0; i<v.size(); i++) { if(find(select.begin(), select.end(), i) == select.end()) { select.push_back(i); back(i); select.pop_back(); } } } } int main() { int arr[] = {1,2,3}; v.assign(arr, arr+3); back(-1); return 0; }
'컴퓨터 이야기 > C++' 카테고리의 다른 글
Queue (0) | 2011.01.08 |
---|---|
Little Bishops (0) | 2011.01.08 |
부분집합 (0) | 2011.01.07 |
soccer UVA (0) | 2011.01.07 |
Bridge (0) | 2011.01.05 |