일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 시스템프로그래밍
- crosssitescripting
- XSS
- Writeup
- rubiya
- SQLInjection
- 운영체제
- 프로세스
- webhacking.kr
- ubuntu
- WebHacking
- 알고리즘
- lordofsqlinjection
- SQL Injection
- Python
- SQL
- 웹해킹
- 시스템
- Linux
- CCE
- sqli
- ctf
- Los
- hacking
- 상호배제
- 해킹
- CODEGATE
- web
- webhackingkr
- 화이트햇콘테스트
- Today
- Total
목록알고리즘 (6)
One_Blog
백준 골드 4 이분 그래프 문제이다. 다음과 같은 그래프가 주어지면 해당 그래프가 이분 그래프인지 아닌 지 판별하는 문제이다. 이분 그래프란, 그래프의 정점 집합을 둘로 분할하여, 각 집합에 속한 정점끼리 서로 인접하지 않도록 분할할 수 있는 그래프를 의미한다. 이런식..?인데, 파랑끼리 연결 안되고, 빨강끼리 연결 안된 거를 보면 된다. from collections import deque def is_bipartite(a, edges): color = [0] * (a + 1) visited = [False] * (a + 1) for v in range(1, a + 1): if visited[v]: continue stack = deque([(v, 1)]) while stack: vertex, c = ..
#include #include #include #include #include #include #include int main(int argc,char **argv) { if(argc!=3) exit(0); file1(argv[1]); file2(argv[2]); } void file1(char *filename) { int fd = open(filename, O_RDWR,0644); //int fd = open(filename, 0_asd | O_dsa, 0644); if (fd < 0) { printf("%s(%d)\n",strerror(errno),errno); } } void file2(char *filename) { int fd = open(filename,O_RDWR|O_CREAT, 0644..
#include #include #include #include #include #include int main(int argc,char **argv) { if(argc!=2) exit(0); file1(argv[1]); } void file1(char *filename) { int fd = open(filename,O_RDWR|O_CREAT, 0644); char a[1024] = "01234567890123"; write(fd, a, 10); close(fd); fd = open(filename, O_RDWR, 0644); char b[1024]={}; read(fd,b,6); close(fd); printf("%s\n",b); }
#include int main() { writeFile(); readFile(); } void writeFile() { FILE *fp; fp = fopen("testFile","w"); fprintf(fp, "File Write Test!\n"); char testStr[1024] = "Test String.\n"; fwrite(testStr, 100, 1, fp); fclose(fp); } void readFile() { FILE *fp; char str[1024]; fp = fopen("testFile","r"); fgets(str,1024,fp); printf("%s",str); fread(str,1024,1,fp); printf("%s\n",str); fclose(fp); } 😀