Programming Language Performance Test

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

Java ArrayList Class Speed Issue

자바에서 단순히 배열과 관련된 작업을 할 때 많이 쓰이는 Class로 ArrayList<T> 가 있다. 정적인 배열에 비해, 정보를 동적으로 리스트에 추가 할 수 있기 때문에 편리하기때문에 그동안은 별 생각 없이 사용해왔다. C 언어를 배울 때 가장 기초적인 자료구조인 Linked List 의 형태와 유사한 클래스이다. ArrayList 클래스의 간단한 사용법은 아래와 같다. ArrayList<String> array = new ArrayList<String>(); array.add("data"); array.remove(0); 위의 ...

이진트리(바이너리트리) 구현 예제

#include <stdio.h> #include <stdlib.h> typedef struct Node { struct Node *left; int num; struct Node *right; }Node; int menu(void); void add(Node **root); void del(Node **root); void inorder(Node *root); Node* search(Node *root, int num); void insertNode(Node **root, int num); void deleteNode(Node **root, int num); int main(void) { Node *root = NULL; while(1) { switch(menu()) { case 1 : add(&root); break; ...

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 ...