Engineering71 Generic Generate Algorithm #include #include #include #include #include using namespace std; template class calc_square { T i; public : calc_square() : i(0) {} T operator() () { ++i; return i * i;} }; int main() { cout 2008. 2. 29. Java에서 Pattern, Matcher로 원하는 것만 뽑아내기. /** * XML파일을 파싱해서 이미지 파일 목록만 뽑아낸다. * @param XMLFilePath * @return 이미지 파일 목록이 들어있는 ArrayList */ private ArrayList extractImgSrc(String XMLFilePath) { BufferedReader reader; StringBuffer sb = new StringBuffer(); char[] buf = new char[512]; ArrayList imgTagList = new ArrayList(); ArrayList imgSrc = new ArrayList(); Pattern pattern; Matcher matches; try { reader = new BufferedReader(new FileReader(X.. 2008. 2. 23. Generic for_each Algorithm #include #include #include #include #include using namespace std; void print_list(string s) { cout 2008. 2. 19. STL관련 헤더파일 정리 종류 클래스 헤더 파일 컨테이너 클래스(container classes) vector vector list list deque deque set, multiset set map, multimap map hash_set, hash_multiset hash_set hash_map, hash_multimap hash_map 컨테이너 어댑터(container adaptors) stack stack queue, priority_queue queue 제네릭 알고리듬(generic algorithms) 아래 다섯 개를 제외한 모든 알고리듬 algorithm 범용 수치 알고리듬(generalized numeric algorithms) iota, accumulate, inner_product, adjacent_diffe.. 2008. 2. 18. 이전 1 ··· 9 10 11 12 13 14 15 ··· 18 다음