일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flex html
- 스택 후위수식
- 후위수식
- 스택 삽입
- 스택 자료구조
- golang
- 괄호 유효성
- 괄호 짝 잘맞는지
- restapi graphql
- Django tutorial
- 중위수식
- 루비 초보
- grid html
- 자료구조 데크
- rest graphql
- 중위수식을 후위수식
- 스택 괄호
- 스택 구현
- go
- 장고 웹 만들기
- 풀스택
- 데크 구현
- 장고 하는법
- grid flex
- 스택 유효성
- rest gql
- 스택 삭제
- 스택 중위수식
- https://stackoverflow.com/questions/219110/how-python-web-frameworks-wsgi-and-cgi-fit-together/219124#219124
- 풀스택?
- Today
- Total
목록분류 전체보기 (59)
donchanee
package main func main() { println("Hello world!") } Go에 대해 배운 내용을 정리하는 시간이다. Go랭은 위와같은 형식으로 hello world를 출력한다. 패키지(package)는 코더에게 코드의 모듈, 재사용을 제공하는 기능을 한다. Go는 패키지를 사용해서 작은 단위의 코드를 작성하고, 그 패키지들로 프로그램을 작성하는 것을 권장한다. https://golang.org/pkg 에 표준 패키지들에 대한 설명이 자세히 나와있는 것을 볼 수 있다. ( Go 설치시 자동 설치되는 패키지들 ) Packages - The Go Programming Language Packages main 패키지는 특별하게 다루어져 (다른 언어와 마찬가지로) main 함수로부터 프로그..
https://www.djangoproject.com
codeanywhere.com 좋은 사이트이다. 수많은 프리웨어 오픈소스들이 있어서 공부하기 참 좋다. var http = require('http');var fs = require('fs');var url = require('url'); function templateHTML(title, list, body){ return ` WEB ${list} ${body} `;}function templateList(filelist){ var list = ''; var i = 0; while(i < filelist.length){ list = list + `${filelist[i]}`; i = i + 1; } list = list+''; return list;} var app = http.createServer(..
보호되어 있는 글입니다.
보호되어 있는 글입니다.
#include #include struct node{int data;struct node *next;}; void partition(struct node *L, struct node **L1, struct node **L2, int n) {struct node *p = L;*L1 = L;for (int i = 0; i next;}*L2 = p->next;p->next = NULL;} struct node *merge(struct node **L1, struct node **L2){struct node *p, *L;struct node *A = *L1;struct node *B = *L2;if (A->data data){L = A;A = A->next;p..
#include #include #include void compareString(char p[], char q[]); int main() { char *p=NULL, *q=NULL; p = (char *)malloc(50*sizeof(char)); // 문자열 1번 동적할당 받는다. if(p==NULL) return -1; q = (char *)malloc(50*sizeof(char)); // 문자열 2번 동적할당 받는다. if(q==NULL) return -1; gets(p); gets(q); // 공백을 포함하는 문자열을 입력받는다. compareString(p, q); // 두 문자열을 비교하는 함수, 출력값대로 출력한다. free(p); free(q); // 동적할당된 메모리를 해제해준다. re..
#include typedef struct student{ // 학생 구조체 선언 int stunum; // 학생번호 double hei; // 키 double wei; // 몸무게}st; int main() { int N, i; double heiavg=0.0, weiavg=0.0; // 평균 초기화 st member[10]={'\0', 0, 0.0}; // 구조체 초기화 scanf("%d", &N); // 학생수 입력받습니다. for(i=0;ifav[2]); getchar(); // 입력을 받고 개행문자를 버립니다. } for(p=stlist;pfav[i])) // 함수를 사용해서 참이라면 printf("%s %s\n", p->name, p->fav[i]); // 출력합니다. } } return 0;..