Skip to content

Instantly share code, notes, and snippets.

View tiger1710's full-sized avatar
🎯
Focusing on Problem Solving!!!

DeokHwan Kim tiger1710

🎯
Focusing on Problem Solving!!!
View GitHub Profile
@tiger1710
tiger1710 / Source.cpp
Last active February 11, 2019 12:59
기존의 피보나치수열의 재귀함수
#include <iostream>
using namespace std;
int f(int n) {
if (n < 0) return 0;
if (n < 2) return n;
return f(n - 1) + f(n - 2);
}
int main(void) {
//avl트리 책에 있는 소스 수정
#include <stdio.h>
#include <stdlib.h>
typedef struct avl_node {
struct avl_node *left_child, *right_child; /* Subtrees. */
int data; /* Pointer to data. */
}avl_node;
@tiger1710
tiger1710 / main.cpp
Last active November 23, 2018 05:12
Sample
#include <iostream>
using namespace std;
int main(void) {
cout << "Hello, World!" << endl;
return 0;
}