liunao

l

导航

2006年8月1日

通话绘图板

摘要: 电子白板程序,在网络中相互传送各种颜色的自定义图形,是聊天程序的一附加功能,利用的是UDP通信package whiteboard; /** * Title: * * Description: * * Copyright: Copyright (c) 2006 * * Company: * * @author not attributable * @version 1.0 */ import... 阅读全文

posted @ 2006-08-01 00:25 liunao 阅读(212) 评论(0) 推荐(0)

2005年11月19日

数据结构——迷宫求解问题

摘要: 迷宫求解代码如下:#define stack_init_size 200 #define overflow 0#define ok 1#define error 0 #include#include typedef int Status; typedef struct{int x;int y;}PosType; int mg[10][10];int zx[5],zy[5]; typ... 阅读全文

posted @ 2005-11-19 15:09 liunao 阅读(6213) 评论(6) 推荐(0)