Programming Language Performance Test

code at https://github.com/proin/Language-Performance-Test R이 좋다는 말도 요즘 많이 들리고, 프로젝트를 하다보면 파이썬으로 구현된 프록젝트들도 꽤 다수가 있다. go 언어 또한 구글에서 밀고있기 때문인지 스크립트 언어가 C와 동급의 퍼포먼스를 보인다는 이야기도 자주 들린다. 그래서 프로젝트 할 때 참고하기 위해 몇가지 언어를 속도 비교를 위해 하노이탑 로직을 통해 재귀함수 속도 ...

Linked List를 활용한 데이터 관리 예제

#include #include #include #define MAX 255 typedef struct _std{ int no,kor,eng,math; char name[MAX]; float avr; struct _std * next; }std; int main() { std *head = NULL, *cur, *newstd, ** ptr, *temp, *del_ptr, *find_ptr,*pre_ptr; int kno,count, i, j,del_no,find_no; float kko,ken,kma; char str[MAX],tmp; FILE *wfp; while(1) { system("cls"); printf("<< MENU >>n"); printf("1.데이터 입력n"); printf("2.데이터 ...

Lotto Program Created by C

#include <stdio.h> #include <time.h> #include <stdlib.h> void select(float *a); void lottorand(int *a); int check(float *a, int *b); int main() { int i; float mylotto[6]; int lotto[6]; printf("로또번호선택n"); select(mylotto); lottorand(lotto); printf("n내가 선택한 숫자 : "); for(i=0;i<6;i++) { printf("%d ", (int)mylotto[i]); } printf("nn로또당첨번호 : "); for(i=0;i<6;i++) { printf("%d ...