自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 8/5/2012

1 #include 2 #include 3 4 using namespace std; 5 6 template 7 ostream& operator& p) { 8 // does p own a object? 9 if(p.get() == NULL) { 10 strm << "NULL"; 11 }

2012-08-06 06:28:02 161

原创 无题

写下的文章,好似从来都不会有标题, 因为, 散漫的心,是不曾有过归宿的。。。 稚嫩的曾经,以为, 初恋是不能失败的,爱情没有第二次。 以为, 爱情只有天荒地老,没有世俗,没有他人。 走过的,失去的,无不验证着, 这爱情,要么, 她就是这么的脆弱与虚无, 要么, 她从未来到我的身边。 很久的等待, 不仅是那人的难得, 也是自己的承担难以

2012-08-05 02:49:12 189

原创 JSF 2.0 (2)

The course English 217 definitely is a tough one. Eight books need to be read through this short summer. How can i finish it? Continue to talk about JSF here: Converter is very important when th

2012-06-21 00:09:15 311

原创 Binary Search Tree

BST.h: #ifndef BST_H_ #define BST_H_ 1 #include #include #include #include class Node { public: int num; Node * previous; Node * next; Node() {this->num = 0; this->previous = NULL; this->ne

2012-06-17 11:18:41 265

原创 Deep Copy constructor function

This is a very good test to show the effect of the deep copy constructor function. #include using namespace std; class Node { public: int value; Node *left; Node *right; Node():value(0),

2012-06-17 11:08:42 237

原创 Binary Heap

BinaryHeap.h: #include #include #define MAX_HEAP_SIZE 101 class BinaryMinHeap { public: BinaryMinHeap(int *heapArray); BinaryMinHeap(int size); ~BinaryMinHeap() { delete []heapArray; } voi

2012-06-17 10:42:06 495

原创 Object Array List

In order to store an object array and for each array element is a head of another class linked list C++ version. #include #define MAXH 10; using namespace std; class Node { public: int value;

2012-06-17 10:38:13 222

原创 JSF_First Try

This is a start of a new project in JSF, Hibernate and Spring. For new JSF project, i would like to start from the design of beans. There are two beans here, which are shown as follows: pa

2012-06-08 02:03:40 251

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除