#() <-- 확실 하지 않음.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if 1 | |
| // | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| typedef struct _node{ | |
| int data; | |
| struct _node *left; | |
| struct _node *right; | |
| }NODE; |
파일시스템의 버디 기법에 사용된 배열 어래이 관련 내용
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #if 1 | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| struct rb_node | |
| { | |
| unsigned long rb_parent_color; | |
| struct rb_node *rb_right; | |
| struct rb_node *rb_left; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <string.h> | |
| int ffs(int x) | |
| { | |
| int r = 1; | |
| if(!x) | |
| return 0; | |
| if(!(x & 0xffff)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 파일 시스템 fat | |
| a1: http://ji007.tistory.com/entry/FAT32-File-System | |
| a2: http://egaoneko.github.io/os/2015/05/24/linux-starter-guide-4.html | |
| a3: http://cappleblog.co.kr/135 | |
| b1: http://snsmo.tistory.com/28 | |
| b2: https://www.linux.co.kr/home/lecture/index.php?cateNo=&secNo=&theNo=&leccode=10213 | |
NewerOlder