etc 썸네일형 리스트형 magazine http://www.samsungsecurities.co.kr/company/megazine.do?cmd=list&MenuCode=M010704 http://www.vogue.co.kr/content/view_01.asp?menu_id=02050100&c_idx=012301040000026 http://booktable.kr/2015/05/16/%EB%B9%84%EC%9A%A9%EC%A0%9C%EB%A1%9C-1%EC%9D%BC-20%EC%B4%88%EB%A1%9C-30%EC%9D%BC%EB%A7%8C%EC%97%90-%EC%9D%B4%EC%83%81%EC%A0%81%EC%9D%B8-%EB%AA%B8%EB%A7%A4-%EB%A7%8C%EB%93%A4%EA%B8%B0/ 더보기 Lisp book Anatomy of Lisp Lisp in Small Pieces PAIP 그리고 Reasoned Schemer Reasoned Schemer miniKanren 이라는 다운스케일된 prolog 같은게 더보기 tc1 #include #include #define MAX_H 15 #define MAX_W 8 #define WALL 1 #define PASS 2 #define GOAL 3 int T; int W; int H; int Answer; int Map[MAX_H + 4][MAX_W + 4]; int CountMap[MAX_H + 4][MAX_W + 4]; enum{ NONE, UP, DOWN, LEFT, RIGHT }; int Search(int w, int h, int depth, int dir) { if (Map[h][w] == WALL) return 0; if (CountMap[h][w] > depth) return 0; if (Map[h][w] == GOAL){ if (Answer < depth) { A.. 더보기 Links 1 http://183.106.113.109/index.php 알고리즘 연습 싸이트 algospot.com https://algospot.com (1759) https://algospot.com/wiki/read/JMBook_%EB%AC%B8%EC%A0%9C%EB%93%A4_%EB% (1187) 알고리즘에 관심이 많으신분은 알고 계실텐데 Topcoder 와 같은 방식으로 문제를 풀고 확인하면서 알고리즘을 공부할 수 있는 곳입니다. 책을 사서 공부할 수 있지만 문제만 풀어볼 수 있습니다. Topcoder에 직접가서 풀어도 되는데 영어의 압박과 싸이트가 너무 복잡해서 여기서 연습을 하려고 합니다. 아~ 어렵네요. 문제는 아주 간단한데 답을 구할 수 가 없어요. 좀 난이도가 쉬운 사이트를 찾았습니다. 제가 공.. 더보기 공사 최소시간 구하기 5/9 2015 #include #define MAX 100000 int N, M; int answerN; int arr_n[MAX + 1]; int arr_m[MAX + 1]; int getAbs(int n, int m){ return n - m > 0 ? n - m : m - n; } struct data{ int i; int tem = 10000000; int closest = -1; int distan = -1; int min=-1; int bf(int x, int y) { printf("\n(%d,%d) ", x, y); for (i = x; i 더보기 so dynamic loading gcc list0513.c -o list0513 0ldl gcc list03333.c -fPIC -shared -o sdfsdf.so -fPIC 위치 독립 코드 , 재배치 가능한 코드 Position Independent Code-> 공유라이브러리 만들기 list0513.c#include int main() { void* handle = dlopen(".list0333.so", RTLD_LAZY);void (*func)(void) = dlsym(handle, "function");(*func)();dlclose(handle);return 0; } list0513dl.c#include void function(){printf("Hello");} $gcc list0513.c -o list0513 -ldl $.. 더보기 Coursera vThis page features MathJax technology to render mathematical formulae. If you are using a screen reader, please visit MathPlayer to download the plugin for your browser. Please note that this is an Internet Explorer-only plugin at this time.Pattern Discovery in Data MiningTop Navigation BarCoursesSuminLimSignature TrackPattern Discovery in Data Mining by Jiawei HanSearch this course SearchSide .. 더보기 api design http://www.slides hare.net/HyeonSeokChoi/c-api-design 더보기 이전 1 2 3 4 5 6 7 8 ··· 63 다음