More actions
(Repair MoniWiki formatting after migration) |
(Repair batch-0003 pages from live compare) |
||
| Line 1: | Line 1: | ||
* Starter : | * Starter : neocoin | ||
* Text Book : Generic Programming and the STL , STL Tutorial and Reference Guide Second edition | * Text Book : Generic Programming and the STL , STL Tutorial and Reference Guide Second edition | ||
* Documentation : Can't write document but try upload source. | * Documentation : Can't write document but try upload source. | ||
== To Do == | == To Do == | ||
* STL Tutorial and Reference Guide Second edition 의 Tutorial부 예제 작성 | * STL Tutorial and Reference Guide Second edition 의 Tutorial부 예제 작성 | ||
* | * <strike> 2장 Overview 1~15 </strike> | ||
* | * <strike> 4장 Differ from other lib 1 </strike> | ||
* | * <strike> 5장 Algorithm 1~34 </strike> | ||
* 6장 13 | * 6장 13 <strike> 1 2 3 4 5 6 7 8 </strike> | ||
* 7장 6 | * 7장 6 | ||
* 8장 4 | * 8장 4 | ||
| Line 24: | Line 24: | ||
** 이전에.. 1부터 10000까지 숫자를 임의로 생성시켜야 하는데 임의적인 숫자가 반복되어서도 안되고, 숫자가 빠져서도 안되게 코딩을 해야 하는 경우가 있었잖아. 그때는 Boolean 10000개로 이미 쓴 숫자인지 테스트 했었던 것 같은데 아래가 정석인 것 같다. | ** 이전에.. 1부터 10000까지 숫자를 임의로 생성시켜야 하는데 임의적인 숫자가 반복되어서도 안되고, 숫자가 빠져서도 안되게 코딩을 해야 하는 경우가 있었잖아. 그때는 Boolean 10000개로 이미 쓴 숫자인지 테스트 했었던 것 같은데 아래가 정석인 것 같다. | ||
for (int i=0; i<10000; ++i) | for (int i=0; i<10000; ++i) | ||
a | a[i] = i; | ||
random_shuffle(&a | random_shuffle(&a[0], &a[10000]); | ||
Latest revision as of 00:29, 27 March 2026
- Starter : neocoin
- Text Book : Generic Programming and the STL , STL Tutorial and Reference Guide Second edition
- Documentation : Can't write document but try upload source.
To Do
- STL Tutorial and Reference Guide Second edition 의 Tutorial부 예제 작성
2장 Overview 1~154장 Differ from other lib 15장 Algorithm 1~34- 6장 13
1 2 3 4 5 6 7 8 - 7장 6
- 8장 4
- 9장 3
- 10장 2
- 11장 2
- Port 써보기
Thread
- 가장 많은 5장의 소스를 다 쳤다. 6장은 어떤 내용이 기다리고 있을까. --상민
- 시작한 이후로 C++ 배웠다고 한 자로서 STL 을 몰랐다는 것이 얼마나 어리석은 것이었는가 깨닫게 된다. --상민
- 나도 위와 같은 표현이 있는 책을 읽어봤는데.. 허거.. 너무 어려웠어.. Effective STL이라는 책이었는데.. 좀 쉬운 과정 없을까.. 휴 Generic Programming and the STL 찾아봐야쥐.. ㅡ.ㅡ--경태
- STL 책중에는 STL Tutorial and Reference Guide Second edition 가 제일 좋지 않나요? 이펙티브 STL 은 아직 책꽂이에서 잠들고있는중이라..-.-a - 임인택
- 많은 문서를 접하지 않았지만, 이 책은 정석 이라는 느낌을 지울수 없다 --NeoCoin
- 오늘 맘에 드는 함수가 있는 소스를 보고 적어줄려 했더니.. 같은 책을 보고 있었네.. ^^;;;;; --경태
- 이전에.. 1부터 10000까지 숫자를 임의로 생성시켜야 하는데 임의적인 숫자가 반복되어서도 안되고, 숫자가 빠져서도 안되게 코딩을 해야 하는 경우가 있었잖아. 그때는 Boolean 10000개로 이미 쓴 숫자인지 테스트 했었던 것 같은데 아래가 정석인 것 같다.
for (int i=0; i<10000; ++i) a[i] = i; random_shuffle(&a[0], &a[10000]);
help
- http://www.bdsoft.com/tools/stlfilt.html
- http://borlandforum.com/impboard/impboard.dll?action=list&db=cpp_tip
See Also GenericProgramming