본문 바로가기

분류 전체보기378

비트 swap 방법 언어 : cshap --> // bitswap // int a = 10; int b = 20; Console.WriteLine("a : {0}, b : {1}", a, b); a ^= b; // a = a ^ b; b ^= a; // b = b ^ a; a ^= b; // a = a ^ b; Console.WriteLine("a : {0}, b : {1}", a, b); 2013. 7. 22.
비트연산의 사용예 비트연산을 사용하여 플래그 처리 하는 방법 int 검 = 0x00000001; //0000 0000 0000 0000 0000 0000 0000 0001 int 활 = 0x00000002; //0000 0000 0000 0000 0000 0000 0000 0010 int 창 = 0x00000004; //0000 0000 0000 0000 0000 0000 0000 0100 int 낫 = 0x00000008; //0000 0000 0000 0000 0000 0000 0000 1000 int 호미 = 0x00000010; //0000 0000 0000 0000 0000 0000 0001 0000 int UseArm = 검 | 낫 | 호미; ////or 연산후 결과 값->0000 0000 0000 0000 0.. 2013. 7. 15.
영어 말하기_Transition word ★ 예를 들고 싶어요! For example (instance) 가장 대표적인 것! 이것 말고는~?Especiallyin this casetake the case offrequentlyspecificallyto illustrateone example of this ison this occasion to illustrate와 take the case of 오.. 이건 앞으로 잘 사용해 먹어봐야 겠어요! ★ 동의함을 표현하고 싶어요! Of courseadmittedlyIt is true thatcertainlyno doubt ★ 부가적인 아이디어를 추가하고 싶어요 Additionallyas well asin additionagainalsofinallyequally importantone could also .. 2013. 6. 20.
CNN_Basic_word 1 spectator 관람객 2 brave (동) 용감히 대면하다 3 extreme sport 익스트림 스포츠, (위험을 무릅쓴) 극한 스포츠 4 be held on (행사가) ~ 위에서 열리다 5 frozen 얼어붙은 6 aisle 복도, (결혼식장의 신랑과 신부가 입장하는) 통로 7 snowmobile 스노모바일, 눈 자동차 8 passion 열정 9 shell (조개류의) 껍데기 10 sea horse 해마 11 urban legend 도시 전설, 세간에 떠도는 소문 12 frigid 몹시 추운 13 Linsanity 린세니티 (Lin+Insanity을 합친 말) 14 revitalize 새로운 활력을 주다, 부활시키다 15 buzz about 바쁘게 돌아다니다, 웅성거리다 16 storied 유명.. 2013. 6. 17.
벡터 파일 입출력 // vectorEx.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.// #include "stdafx.h" #include #include using namespace std;struct Vertex{float x, y, z;}; typedef vector VertexList; int _tmain(int argc, _TCHAR* argv[]){// Create a list for testingVertexList list;Vertex v1 = {1.0f, 2.0f, 3.0f}; list.push_back(v1);Vertex v2 = {2.0f, 100.0f, 3.0f}; list.push_back(v2);Vertex v3 = {3.0f, 200.0f, 3.0f}; list.push_back(v.. 2013. 4. 21.
STL map pair구조 이용하여 삽입하는 방법 #include "stdafx.h"#include #include#includeusing namespace std; int _tmain(int argc, _TCHAR* argv[]){ map map_list;map::iterator it;//맵 인덱스 값//pair구조를 사용하는 방법pair data1("홍길동",10);map_list.insert(data1); pair data2("강기태",22);map_list.insert(data2); pair data3("나정훈",25);map_list.insert(data3); pair data4("김성철",40);map_list.insert(data4); map_list.erase("홍길동"); //맵에서 데이터를 출력하기for (it=map_list.begi.. 2013. 3. 29.