针对vs2003:
第一种方法
在“工具”-》“选项”对话框里面: 
在“选项”下面的“常规”有个“重置窗口布局”按钮。
 
第二种方法
把 Documents   and   Settings\用户名\Application   Data\Microsoft\VisualStudio\7.1 
下的所有文件都删除,然后重新开vs2003   OK;...
                            
                            
                                分类:
其他好文   时间:
2014-06-07 01:44:20   
                                阅读次数:
203
                             
                    
                        
                            
                            
                                如图:
代码:
 
#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
                             
                    
                        
                            
                            
                                CHAPTER 10 ASM Persistent Data Structures
与传统文件系统和卷管理器一样,ASM存储元数据用来描述和跟踪磁盘组的内容。所有的元数据描述存储在上面的ASM磁盘组的组成和内容,这些元数据使得磁盘组实现了自描述。ASM磁盘组有两类元数据:物理元数据和虚拟元数据。物理元数据位于磁盘上。虚拟元数据存储在ASM文件中,因此与其他ASM文件一样这些元数据均匀分布在磁盘组...
                            
                            
                                分类:
数据库   时间:
2014-06-05 06:10:45   
                                阅读次数:
374
                             
                    
                        
                            
                            
                                Team QueueTime Limit:2000MSMemory 
Limit:65536KTotal Submissions:2471Accepted:926DescriptionQueues and Priority 
Queues are data structures which are kn...
                            
                            
                                分类:
其他好文   时间:
2014-06-03 04:15:17   
                                阅读次数:
208
                             
                    
                        
                            
                            
                                AutoComplete // html // js 
$(document).ready(function () { var data = [ "中国", "中国台湾", ...
                            
                            
                                分类:
其他好文   时间:
2014-05-31 16:45:19   
                                阅读次数:
489
                             
                    
                        
                            
                            
                                使用 ps 命令查看 目标进程的 pid,比如说是 1200,然后kill -3 1200在 
/data/anr/traces.txt 中就能找到 进程 1200 中各线程的stack trace
                            
                            
                                分类:
移动开发   时间:
2014-05-31 13:47:40   
                                阅读次数:
434
                             
                    
                        
                            
                            
                                private void textBox1_DragDrop(object sender, 
DragEventArgs e) { if (e.Data.GetDataPresent(DataFormats.FileDrop)) {...
                            
                            
                         
                    
                        
                            
                            
                                Yii中的分页功能主要由yii\web: Linkable接口、yii\widgets: 
LinkPager类和yii\data: Pagination类三个组成。yii\data: Pagination 
主要功能是对分页中的参数进行设置,如当前页、每页大小、总页数,总记录数等。yii\widget...
                            
                            
                                分类:
其他好文   时间:
2014-05-30 23:47:28   
                                阅读次数:
10826