본문 바로가기

전체 글

(25)
[펌] LC공부수기 제가 모 네이버카페에 직접 쓴글인데 조금 수정해서 블로그에다가도 올려보네요~ 제 방법이 진리는 아니기 때문에!! RC에 이어 LC도 그냥 읽어보시고 도움이 되셨으면 하는 바램에 적어봤습니다. 저는 이번 여름방학동안, 흔히 말하는 정체기(800->900대) 없이 8월 11일과 26일 2번의 토익시험으로 940점을 찍었고 제가 적은 수기는 2달~3달안에 정말 효율적으로 빡세게 해서 토익 끝내실 분들을 위한 수기입니다. 실제로 토익이란게 무엇인지 알게 된것은 오래전이었지만 실제로 제가 공부한 기간은 지난 방학때 한 10일정도.. 공부한것도 아니죠 솔직히... 그냥 기본서 깨작대고 기본서LC 사둔거 파트1만 대충... 학기중엔 가끔 보는둥 마는둥.... 전혀 도움이 되지 않았습니다. 하지만 이번 방학때 독학으로..
[펌] 외국 안나가고 영어 완전 정복하기! [폭풍스압주의] 출처 : ??
[펌]네이버에서 가장 유명한 토익수기.jpg
Aussie slang, 오지 슬랭 모음 Strine and Australian Slang Glossary of Australian Words, Phrases, Colloquialisms By Larry Rivera, About.com Guide A A, as in the big A. In Australian slang, to give someone the big A is to dismiss that someone out of hand. Adrians. Rhyming slang for drunk. From tennis player's name Adrian Quist. Quist rhymes with pissed, hence drunk. aggro. Aggravation, bother, belligerence, aggressiveness, agg..
Logic and Computer Design Fundamentals 3th Solutions Logic and Computer Design Fundamentals 3th Solutions
tiny BASIC interpreter C source - 다차원 배열 추가 내가 완성하지 못한 명령어를 포함한채로 제출 하지는 않았을테고........ 분명히 최종 완성본이 있을텐데 어디있는지 모르겠음 몇년전에 만들어둔걸 올리다보니... 잘 돌아갈수도 있고....안 돌아가면 말고 ----------------------------------------------------------------------------------- /* A tiny BASIC interpreter */ #include #include #include #include #include #include //디버깅 하지 않을때는 주석처리한다 #define DEBUG //original code 용 #define DEBUG2 //추가 코드 용 //#define DEBUG3 //추가 코드 - 추가 함수용 #d..
tiny BASIC interpreter C source 비주얼 베이직 코드를 수행하는 인터프리터 ----------------------------------------------------------------------------------- /* A tiny BASIC interpreter */ #include "stdio.h" #include "setjmp.h" #include "math.h" #include "ctype.h" #include "stdlib.h" #define NUM_LAB 100 #define LAB_LEN 10 #define FOR_NEST 25 #define SUB_NEST 25 #define PROG_SIZE 10000 #define DELIMITER 1 #define VARIABLE 2 #define NUMBER 3 #defi..
DFS Traversal Algorithm C source #include #include #define STACK_SIZE 10 int push(int* stack, int* top, int value); int pop(int* stack, int *top, int *value); int Dfs(int (*dfs)[11], int* pred, int* r_stack, int* r_top); main() { int i,j, k; int temp; int dfs_array[10][11]={ {0, 8, -1, -1, -1, -1, -1, -1, -1, -1, -1}, {0, 2, 3, 7, 9, -1, -1, -1, -1, -1, -1}, {0, 1, 4, 8, -1, -1, -1, -1, -1, -1, -1}, {0, 1, 4, 5, -1, -1, -1, -1,..