본문 바로가기

대학교92

수중 다중 매체 통신의 흐름제어를 위한 단편화 기법 구현 2020. 11. 22.
[03] lex.l main.c main.c #include #include #include "lex.h" extern FILE *yyin; /* input stream */ extern int yylval, /* integer value of TK_NUM */ yylen; /* length of TK_ID string */ extern char *yytext; /* point to TK_ID string */ main(argc, argv) register int argc; register char *argv[]; { int n, i; char *c; if (argc != 2) { fprintf(stderr, "usage: scan \n"); exit(1) ; } if ((yyin = fopen(argv[1], "r")) .. 2019. 4. 14.
[02] lex.c main.c main.c #include #include #include #include "lex.h" extern int get_tok(); extern int yylval, /* integer value of TK_NUM */ yylen; /* length of TK_ID string */ extern char yytext[]; /* point to TK_ID string */ extern FILE *fin; main(int argc, char *argv[]) { int n, i; char *pc; if (argc != 2) { fprintf(stderr, "usage: %s \n", argv[0]); exit(1) ; } if ((fin = fopen(argv[1], "r")) == NULL) { .. 2019. 4. 14.
[01] wc main.c#include #include extern void countfile(), printtotal(); main(int argc, char *argv[]) { register FILE *fp; register int i; if (argc == 1) countfile(stdin, ""); else { i = 1; while (i 2) printtotal(); } exit(0); } wc.c #include #define BufSize 16#define Sentinel '\0'static unsigned char buf[BufSize*2+1];static unsigned char *lexeme_beginning, *forward;#define NextChar() ((*forward)? *forwar.. 2019. 3. 20.
[13장] 2019. 1. 3.
[11장] UDP 소켓을 이용하여 daytime 서버와 클라이언트를 구현 2019. 1. 3.
[7,8장] 서버를 다중처리 가능하도록 수정 2019. 1. 3.
[5,6장] 2019. 1. 3.
실습문제 4 2019. 1. 3.
[논문] 신문기사를 바탕으로 범죄의 유·무죄 예측 R을 이용해 네이버뉴스를 크롤링 했습니다. library(tm)library(ggplot2)library(KoNLP)useSejongDic()g_data.path 2019. 1. 3.
맥주 추천 시스템 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172# Ninth code snippetlibrary('reshape')library('foreign')library('ggplot2') # Eighth code snippetinstallations 2019. 1. 3.
[11장] 소셜 네트워크 분석 2019. 1. 3.
[10장] kNN: 추천시스템 Recommendation Systems 2019. 1. 3.
[9장] MDS: 미국 상원의원 유사성을 시각적으로 탐색하기 Visually Exploring US Senator Similarity 2019. 1. 3.
[7장] 최적화 Optimization: 암호해독 Breaking Codes 2019. 1. 3.
[6장] 정규화 Regularization: 텍스트회귀 Text Regression 2019. 1. 3.
[5장] 회귀모형: 페이지 방문 수 예측 Regression: Predicting Page Views 2019. 1. 3.
[4장] 순위 매기기 ranking : 자동 분류함(priority inbox) 2019. 1. 3.
[PROJECT] Health Care main codeimport java.awt.BorderLayout;import java.awt.EventQueue;import javax.swing.JFrame;import javax.swing.JPanel;import javax.swing.border.EmptyBorder;import javax.swing.table.DefaultTableCellRenderer;import javax.swing.table.TableColumnModel;import javax.swing.JButton;import javax.swing.JTable;import java.awt.Color;import java.awt.Font;import java.awt.event.ActionListener;import java.awt.ev.. 2019. 1. 3.
[9장] 소프트웨어 유지보수 [권기태] 2019. 1. 3.