본문 바로가기

전체 글

(231)
1004 알고리즘
JS HTML DOM JavaScript HTML DOM(Document Object Model) - When a web page is loaded, the browser creates a Document Object Model of the page. The HTML DOM model is constructed as a tree of Objects My Link My header With the object model, JavaScript gets all the power it needs to create dynamic HTML: JavaScript can change all the HTML elements in the page. JavaScript can change all the HTML attributes in the ..
1003 알고리즘 Hash : Dictionary Associative memories" or "associative arrays A set of Key:value pairs 순서없는 집합 키 중복 X 동일 키에 대해서는 값이 갱신됨 # dictionary 자료구조 이용 방법 scores = {"Tom": 90, "David": 85, "Gabi": 80} # items() items = scores.items() print(items) itemsList = list(items) print(itemsList) # for loop for i in itmes: print(i) # -> 키 값 출력 # keys() keys = score.keys() for k in keys: print(k) # values() values =..
0930 컴구 2-18 Immediate Operands C code of using a constant 4 g = g + 4; Allow a constant inside the instruction addi x22, x22, 4 -> add의 i는 이미디어틀리(?) 첫번째는 레지스터, 두번째는 상수 프로그램이 차지하는 공간이 작아짐 Alternative: to define constants and load them in memory ld x9, AddrConstant4(x3) add x22, x22, x9 ... ... somewhere : 4#AddrConstant4(x3) Sign Extension Representing a number using more bits - preserve the numeric val..
0929 시프 어셈블리어 : 기계어에 1:1 대응관계를 갖는 명령어로 이루어진 low-level 프로그래밍 언어 C 언어로 프로그램을 작성할 때는 프로그램이 어떻게 내부적으로 구현되는지 알기 어렵다 어셈블리어로 프로그램을 작성할 때는 프로그래머는 프로그램이 어떻게 메모리를 이용하는지, 어떤 명령어를 이용하는지를 정확히 표시해야 한다. 물론 고급 언어로 프로그램으로 프로그램할 때가 대개의 경우 보다 안전하고, 편리하다 -> 코드 번역을 해줌 어셈블리어로 잘못 짰다가는 컴퓨터가 죽을 수도 있음 어셈블리어로 코딩한다는건 '컴파일러'를 쓰지 않는다는 것. 게다가 최근의 Optimizing compiler들은 웬만한 전문 어셈블리 프로그래머가 짠 프로그램보다 더 훌륭한 어셈블리 프로그램을 생성해 준다. 고급언어의 특성 - 대형..
0928 객지설
0928 웹프
0927 컴구