自定义博客皮肤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)
  • 资源 (1)
  • 收藏
  • 关注

原创 清理IIS指定IP记录

import java.io.*;import java.util.ArrayList;import java.util.ListIterator;/** *//** * @author Ansty * */public class LogKiller ...{    private String ip; // 要清除的IP    private ArrayList logArray = ne

2008-02-14 16:32:00 1013

原创 稀疏矩阵

#include stdio.h>#include stdlib.h>#include malloc.h>#define ERROR 0;#define OK 1;#define MAXSIZE 10#define ElemType inttypedef struct...{    int i;    //该非零元的行下标    int j;    //该非零元的列下标    ElemType

2007-11-07 13:44:00 754

原创 括号匹配

 #include stdio.h>#include stdlib.h>#include malloc.h>#include iostream.h>#define ElemType char#define Status int#define STACKSIZE 10#define OK 1#define ERROR 0typedef struct...{    ElemType *base

2007-11-07 13:42:00 697

原创 二叉树

//#include #include iostream.h>#include malloc.h>int i;struct bt...{    char elem;    struct bt *l;    struct bt *r;};//先序生成二叉树struct bt * Creat(struct bt *t,char *elem)...{    //if(i>j)    //    re

2007-11-07 13:41:00 636

原创 单链表

#include stdio.h>#include malloc.h>#includestdlib.h>typedef struct LNode...{    int data;    struct LNode *next;}LNode,*LinkList;//新建链表void CreateList(LinkList &head,int i)...{    LinkList p;       

2007-11-07 13:40:00 641 1

螺旋矩阵(C语言版)

螺旋矩阵(C语言版),VC6下编译通过。

2008-10-30

空空如也

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

TA关注的人

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