自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

rocky_shen的专栏

欢迎光临!

  • 博客(10)
  • 收藏
  • 关注

原创 从IE到Firefox

终于有一个用得舒服的Web浏览器了。除了个别Script不能运行,其它都很满意。以下原因足以让我跟IE说bye-bye了:1.为了拦截广告我得安装XXX;2.为了防止恶意script我得安装XXX;3.为了新发现的漏洞我的安装XXXNNN;4.因为以上几点,内存的多消耗40/50M+XXM;5.如果装2K还得在盘上留着60M+XXM的安装包;6.经常被流氓网站改了主页;7.经常被奇怪的错误出现,而

2005-04-28 19:01:00 957

转载 制作Docbook文档

http://blog.csdn.net/mickeyrat/archive/2005/02/08/284270.aspx

2005-03-11 12:59:00 846

原创 List

#include "stdio.h"#include "string.h"#include "stdlib.h"typedef struct list{ void   *data; struct list *next;}List;List* getList(int len,char* initData);void freeList(List* phead);int main(){ List *hL

2004-11-05 20:41:00 766

原创 整理字符串

int str_trim(char array[],int length){ int i=0; for(i=length;i>0;i--) {  if(array[i-1]!= )    break; } array[i]=/0; return i;}

2004-11-05 16:55:00 1112 1

原创 用字符集中的字符分隔字符串

/*用字符集中的字符分隔字符串*/int split(char string[],const char *seps,char* substr[],int len){ int i=0; substr[i]=strtok(string,seps); while(substr[i]!=NULL) {  i++;  if(i>=len) break;  substr[i]=strtok(NULL,seps

2004-11-05 16:53:00 825

原创 stricmp()

#include "stdio.h"int main(){ char *str1="hello world!  "; char *str2="Hello world!**"; int n=0; n=stricmp(str1,str2); printf("n: %d/n",n);}int stricmp(const char *str1,const char *str2){ char *p1,*

2004-11-05 16:50:00 3024 3

原创 c

// test.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include #include #include #include #include typedef struct List{ void   *data; struct List *next;

2004-10-28 11:08:00 820

原创 C项目的分解

     先说明,这完全是我个人的意见,你可以(也许你真的会?)用别的方式来做。这会触动到有关编码风格的问题,而大家从来就没有停止过在这个问题上的争论。在这里我只是给出我自己喜欢的做法(同时也给出这么做的原因):             i) 不要用一个 header 文件指向多个源码文件(例外:程序包 的 header 文件)。用一个 header定义一个源码文件的方式 会更有效,也更容易查寻。

2004-10-19 15:21:00 1024

转载 打印编程!

学习打印编程!

2004-10-07 16:37:00 711

原创 Oracle笔记

Oracle数据操作和控制语言详解  http://blog.csdn.net/chensheng913/archive/2004/09/02/92895.aspxPL/SQL变量的命名:v_VariableName         Pragram variablee_ExceptionName      User-defined exceptiont_TypeName             

2004-10-07 14:53:00 622

空空如也

空空如也

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

TA关注的人

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