当前位置:首页 » 编程博文
开发技术指南» 文章正文
    引言: #include <stdio.h>#include
 

 

    摘要:首先声明:本人并不是什么高手,以下只是平时编程的一些经验。 关于asp连接数据库的方法,几乎扫盲了吧( :,这里就不废话了,但不知各位高手有没有在微软的xp系统下做asp的,你们是否与遇到过下列问题呢?当连好库后,会出现无法更新的错误——多见于asp或asp.net连接access。此时解决的办法如下: 1.打开我的电脑->工具-〉文件夹选项-〉查看选项卡,去掉使用简......
 ·lib tomcrypt文档翻译    »显示摘要«
    摘要: 不要使用自己的密码体制,而应该使用健壮的密码算法库,目前主要的密码cryptlib,openssl,crypto++,bsafe和cryptix;当然.net和java也提供了密码算法库。但是,上面的算法库中,像cryptlib,bsafe都是要收费的,openssl和crypto++缺乏文档很难使用。cryptix的文档严重不足并且java的api十分的复杂,最严重的是速度不佳。libt......


关于二叉树前序输入且输出结构的算法实现

#include <stdio.h>

#include <stdlib.h> 【程序编程相关:经典数据结构题目

【推荐阅读:webmenu编程精彩历程(二)菜单xm

#include <math.h> 【扩展信息:螺旋算法

#define elementtype int

#define  maxsize 511 //the number of the node is 2^levels-1

                     //and the max level is 9

//an array to store each value of the node in the tree by its index

int values[maxsize];

//node structure constructor

typedef struct bt {

   elementtype data;

   struct bt *lchild, *rchild;

} binarytreenode,*btroot;

//function declear

elementtype inorder(btroot root);

elementtype preorder(btroot root);

elementtype postorder(btroot root);

void listtree(int l);

void addspace(int i);

//the main function to excute

main()

{

  int i,l,n;

  btroot r=malloc(sizeof(binarytreenode));

  printf("===================================================================\n");

  printf("binarytree list & 3-order program by songnan @ 2004\n");

  printf("===================================================================\n");


...   下一页
    摘要:倪大鹏 (ndp@21cn.com) 2001 年11 月 ibm 宣布捐出了价值 4 千万美金的开发软件给开放源码的 eclipse 项目。如此受青睐的 eclipse 是什么样子呢,如何使用呢?本文的第一部分会使你对eclipse有一个初步的认识。并且,eclipse这个号称未来能进行任何语言开发的ide集大成者,又将如何实现它的这一宏伟目标?第二部分介绍的eclipse的插件开发将是其中的......
» 本期热门文章:

©2000-2007 All Rights Reserved. 最佳浏览:1024X768 MSIE