2005年9月3日

The .NET Framework(非原创---外教讲义)

摘要: The .Net Framework TopicsUnderstanding .NET Framework Common Language Runtime (CLR) ... 阅读全文

posted @ 2005-09-03 10:54 爱你一万年123 阅读(152) 评论(0) 推荐(0) 编辑

An Introduction to .NET(非原创---外教讲义)

摘要: An Introduction to .NET Basic concept of .Net ProgrammingSet of instructions provided to computer is called programming.Program development cycleProg... 阅读全文

posted @ 2005-09-03 10:49 爱你一万年123 阅读(134) 评论(0) 推荐(0) 编辑

求出一个排序二叉树中结点度数为一的结点个数

摘要: #include#include#include#include#include#define ERROR 0#define STACK_INIT_SIZE 100#define OVERFLOW -1#define FALSE 0#define TRUE 1#define OK 1int i=0... 阅读全文

posted @ 2005-09-03 10:20 爱你一万年123 阅读(368) 评论(0) 推荐(0) 编辑

用单循环链表存储一个环上的数据,并计算任意两个相邻元素之差是否超过2

摘要: #include#include typedef struct node{ int data; struct node *next;}Lnode,*LinkList; //假设下面的单循环链表均为带头结点,而且L指向尾结点。 void CreatLinkList(LinkList &L){//... 阅读全文

posted @ 2005-09-03 10:17 爱你一万年123 阅读(233) 评论(0) 推荐(0) 编辑

查找二叉排序树中最大的键值(c代码)

摘要: #include#includestruct tree{ char key; struct tree *Lchild,*Rchild;};struct tree *create_btree(struct tree *t,struct tree *r,char key){ if (r ==0 ... 阅读全文

posted @ 2005-09-03 10:09 爱你一万年123 阅读(294) 评论(0) 推荐(0) 编辑

导航