私が読んだ論文、読むべき論文、とりあえず積んでいる論文をまとめていこうというお気持ち。
テンプレートは用意したのでそれを埋めるように書く。できればBeamerに落しこめればより良いなーなんて。
そんなことを考えている。
Hoge Fuge
[user] | |
name = Shuichi Tani | |
email = [email protected] | |
[alias] | |
s = status | |
ss = status -s | |
l = log | |
c = commit | |
ca = commit --amend | |
pu = push |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <limits.h> | |
#include <assert.h> | |
#define MAX_LENGTH 255 /* 設定上の最大文字数 */ | |
#define NUM_OF_TGT 3 | |
int search(char *word, char *str); |
#include <iostream> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <assert.h> | |
using namespace std; | |
typedef struct _complex { | |
double re; | |
double im; |
// module stack | |
// it is submodule of pc | |
module stack(clk, en, pu_po, qi, qo); | |
parameter WIDTH = 9; | |
input clk, en, pu_po; | |
input [WIDTH-1:0] qi; | |
output [WIDTH-1:0] qo; | |
#include <stdio.h> | |
#include <stdlib.h> | |
typedef struct _node { | |
int node_data; | |
struct _node *next; | |
}node; | |
node *newNode(int data){ | |
node *ret = (node *)malloc(sizeof(node)); |
#include <stdio.h> | |
#include <stdlib.h> | |
#define swap(a,b) {(a)+=(b);(b)=(a)-(b);(a)-=(b);} | |
/* use gcc -std=gnu99 for compile */ | |
/* if you don't want to use -std=gnu99 option, */ | |
/* then you can use D = (int *)malloc(n * sizeof(int)) */ | |
/* as line 24 and must add declaration of int *D */ | |
typedef struct HeapTree |