上一页 1 ··· 310 311 312 313 314 315 316 317 318 ··· 320 下一页
摘要: 实验二 参考源程序 /* Author : Eman Lee, 计算机软件基础 教材 P79, ex4 设有一头为head的带头结点的单链表,其数据域为整形数据且递增有序。 试写一算法,将元素插入链表适当的位置,以保持链表的有序性。 */ #include #include typedef int DataType; struct nodetype//Define node 定义节点 { ... 阅读全文
posted @ 2007-10-16 23:03 emanlee 阅读(369) 评论(0) 推荐(0) 编辑
摘要: ------------------------------------------------------------------ 实验一 参考源程序 // 线性表的顺序存储(顺序表) // Author: Eman Lee #include void SearchMultipleLocation(char List[],int *ListLength,char key) { int i... 阅读全文
posted @ 2007-10-16 23:02 emanlee 阅读(437) 评论(0) 推荐(0) 编辑
摘要: P111,第3题 参考答案 先序遍历: A B D G H C E I F J 中序遍历: G D H B A E I C F J 后序遍历: G H D B I E J F C A 顺序存储结构: 位置 1 ... 阅读全文
posted @ 2007-10-16 22:59 emanlee 阅读(424) 评论(0) 推荐(0) 编辑
摘要: http://aspnet.4guysfromrolla.com/articles/021506-1.aspx By Scott Mitchell Introduction When creating ASP.NET 2.0 applications, developers commonly store sensitive configuration information in the We... 阅读全文
posted @ 2007-10-16 12:23 emanlee 阅读(596) 评论(0) 推荐(0) 编辑
摘要: /*--------------------------------------------- Title: 二叉排序树中查找 Author: eman lee ----------------------------------------------*/ #include #include //定义二叉树的节点结构 struct node { int data;//... 阅读全文
posted @ 2007-10-14 20:20 emanlee 阅读(563) 评论(0) 推荐(0) 编辑
摘要: //分块查找,索引顺序查找 #include //定义顺序存储线性表的结点结构 struct student { long Xuehao;//关键字 int Jihao; //非关键字 }; struct indexNode { int address; int maxKey; }; int SearchPosition(struct indexNod... 阅读全文
posted @ 2007-10-14 20:15 emanlee 阅读(634) 评论(0) 推荐(0) 编辑
摘要: 以下文章提到可以用“http://localhost/MyWebApp/WebAdmin.axd”管理站点: ------------------------------------------------------------ http://msdn2.microsoft.com/en-us/library/ms379595(VS.80).aspx Visual Studio 2005 Tec... 阅读全文
posted @ 2007-10-08 11:30 emanlee 阅读(986) 评论(0) 推荐(0) 编辑
摘要: Visual Studio 2005 IDE相关的11个提高开发效率的技巧 英文原创来源于: http://www.chinhdo.com/chinh/blog/20070920/top-11-visual-studio-2005-ide-tips-and-tricks-to-make-you-a-more-productive-developer/ Here are my top 11 tip... 阅读全文
posted @ 2007-10-07 13:53 emanlee 阅读(833) 评论(0) 推荐(0) 编辑
摘要: /*--------------------------------------------------------- Title: 顺序查找 Author : Eman Lee ----------------------------------------------------------*/ #include //定义顺序存储线性表的结点结构 struct node { ... 阅读全文
posted @ 2007-10-07 10:59 emanlee 阅读(609) 评论(0) 推荐(0) 编辑
摘要: This page is specific to Microsoft Visual Studio 2005/.NET Framework 2.0 Guidelines http://msdn2.microsoft.com/en-us/library/ms184410(vs.80).aspx Design Guidelines for Developing Class Libraries ... 阅读全文
posted @ 2007-10-05 10:43 emanlee 阅读(389) 评论(0) 推荐(0) 编辑
上一页 1 ··· 310 311 312 313 314 315 316 317 318 ··· 320 下一页