- Mar 07 Thu 2013 22:20
-
2013.3.7 為了未來我可以忍
- Nov 21 Mon 2011 21:37
-
計算LCS的字串長度 ver3. (使用vector)
#include<fstream>
#include <ctype.h>
#include<vector>
using namespace std;
const int Size=999999;
- Nov 21 Mon 2011 12:02
-
計算LCS的字串長度 ver3.
#include<fstream>
#include <ctype.h>
using namespace std;
const int Size=999999;
char c,subseq2[Size];
- Nov 21 Mon 2011 11:29
-
計算LCS的字串長度 ver2.
#include<fstream>
#include <ctype.h>
#include <cstdio>
#include <cstdlib>
using namespace std;
- Nov 19 Sat 2011 12:04
-
[資料結構] Double Link List 雙向鏈結串列
#include<iostream>
using namespace std;
const int Size=10;
int Data[Size];
int Link[Size];
- Nov 18 Fri 2011 09:56
-
[資料結構] Circular Double Ended Queue
#include<iostream>
using namespace std;
const int Size=5;
int q[Size];
int Left,Right;
- Nov 17 Thu 2011 22:17
-
[資料結構] Linear Deque
#include <iostream>
using namespace std;
const int Size=10;
int q[Size];
int Left,Right,left_end,MoveTime=0;
- Nov 15 Tue 2011 14:22
-
具特別值的佇列(Circular Queue with Special Value)
#include<iostream>
using namespace std;
const int N=10;
int q[N];
int rear,front;
- Nov 15 Tue 2011 13:43
-
使用標記的環狀佇列 Tagged Circular Queue
#include<iostream>
using namespace std;
const int N=10;
int q[N];
int rear,front,Qfull; //新增一個叫Qfull的變數來記錄環狀佇列是否真的是滿的
- Nov 15 Tue 2011 13:26
-
環狀佇列(Circular Queue)
#include<iostream>
using namespace std;
const int N=10;
int q[N];
int rear,front;
- Nov 15 Tue 2011 11:25
-
[資料結構] Queue
#include<iostream>
using namespace std;
const int N=100;
int q[N];
int front,rear;