自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (7)
  • 收藏
  • 关注

原创 queue双端队列

Queue

2008-01-25 00:49:00 406

原创 stack栈

#include#includetemplateclass Stack{    int top;                                    //栈顶指针(下标)    T *elements;                               //动态建立的栈    int maxSize;                               //栈最

2008-01-25 00:49:00 393

原创 shell排序

 #include using namespace std;void shell(int arr[],int count);void main(){     int arr[]={40,38,4,16,21,99,83,15,44,66};      shell(arr,10);}void shell(int arr[],int count){    int increment=c

2008-01-18 09:54:00 271

原创 二分查找

#include using namespace std;void shell(int arr[],int n,int x);//n为数组个数,x为被查找数int main(){      int arr[]={5,8,10,13,15,19,21,30,45,48};      shell(arr,10,8);}void shell(int arr[],int n,int x){  

2008-01-18 09:51:00 233

原创 单向链表

#include using namespace std;//templatestruct Node{ int c; Node *next,*prev; Node(int num,Node *pre=0,Node * nex =0):c(num),prev(pre),next(nex){}};class List{public: List():head(0),tail(0){} void

2008-01-15 20:10:00 291

原创 引用计数

//reference counting#include using namespace std;class String{public:    String(const char *initValue="");    String(const String& rhs);    ~String();    String& operator=(const String & rhs);    cons

2008-01-08 02:20:00 281

More Effective(.doc)

如此经典,不用介绍了

2008-06-11

c++编码规范与指导.chm

可以校对一下自己的编码风格,比较实用

2008-01-08

c++大师对话

中文版,chm格式,c++大师对话,内容适合有一定基础的c++程序员

2008-01-08

Effective STL(中文版)

非常经典的书籍,不用过介绍,中文.chm格式

2008-01-08

c++技巧

一些C++使用中的技巧,内容比较简单实用

2008-01-08

C函数速查(附带例子)

.chm文档式,便于查询,里面有每个函数的例子

2008-01-08

空空如也

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

TA关注的人

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