针对vs2003:
第一种方法
在“工具”-》“选项”对话框里面:
在“选项”下面的“常规”有个“重置窗口布局”按钮。
第二种方法
把 Documents and Settings\用户名\Application Data\Microsoft\VisualStudio\7.1
下的所有文件都删除,然后重新开vs2003 OK;...
分类:
其他好文 时间:
2014-06-07 01:44:20
阅读次数:
203
贴出的代码实现了基本的增删改查,有哪些地方有问题欢迎指正,也欢迎交流,每一次的进步都离不开大家的帮助。...
分类:
编程语言 时间:
2014-06-05 11:52:01
阅读次数:
388
题目如下:
S-Trees
A Strange Tree (S-tree) over the variable set is a binary tree representing a Boolean function
.Each path of the S-tree begins at the
root node and consists ...
分类:
其他好文 时间:
2014-06-05 11:04:37
阅读次数:
248
整合spring-framework-3.2.4.RELEASE 整合hibernate-release-4.3.5.Final报错Caused by: java.lang.NoClassDefFound的解决方案...
分类:
编程语言 时间:
2014-06-05 09:29:57
阅读次数:
289
如图:
代码:
#include
#include
#include
#include
using namespace std;
char ch;
typedef struct BinNode
{
char data;
struct BinNode *lchild,*rchild;
}BinNode,*BinTree; //二叉树链式...
分类:
其他好文 时间:
2014-06-05 09:15:24
阅读次数:
203
/*
二叉查找树的链表实现:
以及三种遍历方式,删除节点;
查找节点;
author:天下无双
Date:2014-5-28
Version:3.0
*/
#include
#include
typedef int T;//树内节点的数据类型
using namespace std;
class BiTree
{
private:
struct BiNode{
T data;...
分类:
其他好文 时间:
2014-06-05 09:12:12
阅读次数:
217
这个例子是来自于严蔚敏的《数据结构》的栈那一节。 但是我进行了一些简单的修改,确保编译通过。
目的:利用栈 计算 “3*(7-2)”这样的字符串的算术运算的结果。 共有3个代码文件,如下:
1、mystack.h
#pragma once
#define maxsize 30
typedef struct
{
char data[maxsize+1];
...
分类:
其他好文 时间:
2014-06-05 07:35:18
阅读次数:
242
Spring有多种调用远程的方式,今天学习了一下远程方法调用(RMI)。
RMI需要服务端和客户端
我们先从服务器开始
我的代码结构
package rmi;
public interface ServerRmiI {
public String sayHi(String name);
}
package rmi;
public class Ser...
分类:
编程语言 时间:
2014-06-05 06:57:55
阅读次数:
207
第一篇:ztree简单介绍,整合ztree的一些功能和demo演示
第二篇:ztree与springmvc+spring+mybatis整合实现增删改查
第三篇:ztree实现同级拖拽排序并将排序结果保存数据库...
分类:
其他好文 时间:
2014-06-05 06:55:54
阅读次数:
212
直接上代码:
/*
二叉树的链表实现:
以及三种遍历方式:
author:天下无双
Date:2014-5-28
Version:2.0
*/
#include
#include
typedef int T;//树内节点的数据类型
using namespace std;
class BiTree
{
private:
struct BiNode{
T data;
BiN...
分类:
其他好文 时间:
2014-06-05 06:30:49
阅读次数:
273