自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (9)
  • 收藏
  • 关注

原创 双向链表

#include #include using namespace std; typedef struct student {  int data;  struct student *pre;  struct student *next; }node; node *creat() {  int cycle=1,x;  node *head,*p,*s;  head=(n

2012-10-08 16:52:55 402

原创 strlen()函数的实现

#include #include using namespace std; int str_length(char *abc) {  char *p=NULL;  p=abc;  int count=0;  while(*p)  {   p++;   count++;  }  return count; }  main() {  char *abc="abcd

2012-10-07 20:45:09 500

原创 两个链表合并为一个链表

#include #include typedef struct Node { int data; struct Node *next; }node; typedef struct Node *linklist; using namespace std; void *creat(linklist *L,int n) { *L=(linklist)malloc(sizeof

2012-10-02 23:42:35 721

原创 朴素字符串匹配算法

#include #include #include #define maxsize 40 #define ok 1 #define error 0 using namespace std; typedef char String[maxsize+1]; int String_assign(String m,char *chars) {  int i;  if(strle

2012-10-01 18:19:21 462

原创 找到数组中第二大的数值

#include #include using namespace std; int min_num=0; int find_sec_num(int a[],int n) {  int max_num;  int sec_num;  int i;  max_num=a[0];  sec_num=min_num;  for(i=1;i  {  if(a[i]>max_n

2012-10-01 00:02:56 955

《C# 线程参考手册》

很好的书。 很好的书。 很好的书。很好的书。 很好的书。 很好的书。 很好的书。很好的书。 很好的书。 很好的书。 很好的书。很好的书。

2017-09-20

《C# 线程参考手册》源码

《C# 线程参考手册》 源码 我觉得对于初学者学习线程相关知识将的都比较清楚,会有帮助的。 《C# 线程参考手册》 源码 我觉得对于初学者学习线程相关知识将的都比较清楚,会有帮助的。

2017-09-20

C# Winform窗体 皮肤库

Winform皮肤库,满足于Winform的应用。

2017-08-16

C# 饼图 柱状图实例

C# 饼图 柱状图实例,直接下载可用。

2017-08-16

C#跨窗体(Winform)调用控件(委托回调)

委托回调

2017-08-16

Netty测试代码,尤其对于Pipeline顺序

Netty测试代码,尤其对于Pipeline顺序

2017-06-28

Pushlet点对点发送消息

找了好久资料,没有找到实例,自己参考网上写的实例,可用。

2017-06-08

Java Web整合王者归来 源码

不错的框架书源码,描述非常清晰。

2017-05-10

李刚 《疯狂Ajax讲义(第3版)》源码

完整的1-12章,有用,好用,适合在学习Ajax的小伙伴。

2017-05-10

空空如也

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

TA关注的人

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