自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (4)
  • 收藏
  • 关注

原创 IE、chrome、Firefox浏览器缓存查看

一、IE浏览器缓存查看和设置转载:http://jingyan.baidu.com/article/f0062228d1b4a9fbd2f0c876.html二、Firefox缓存查看(1) 查看    在地址栏输入about:cache,进入Information about the Cache Servic (2) 清除缓存   打开Firefox,工具 →

2015-01-24 00:34:39 740

转载 mysql索引查询

查看索引mysql> show index from tblname;mysql> show keys from tblname;· Table表的名称。· Non_unique如果索引不能包括重复词,则为0。如果可以,则为1。· Key_name索引的名称。· Seq_in_index索引中的列序列号,从1开始。· Column_name列名称。

2015-01-23 13:57:08 375

原创 iptables 用于linux端口的开关

一、打开端口:/sbin/iptables -I INPUT -p tcp --dport 8011 -j ACCEPT    #开启8011端口 /etc/rc.d/init.d/iptables save        #保存配置 /etc/rc.d/init.d/iptables restart      #重启服务 #查看端口是否已经开放/etc/i

2015-01-14 09:50:37 765

MyEclipse8.6注册

把key.java考到MyEclipse8.6下运行就可

2010-12-07

[专业PDF转换Word-PPT-Excel工具].AnyBizSoft.PDF.Converter

1、运行 !)Install.bat 进行初始化(Vista/Windows 7请右键以管理员权限运行); 2、双击 PDFConverter.exe 进入主程序,当前版本为 AnyBizSoft PDF Converter v2.02。 若提示注册,请输入以下注册信息: Licensed e-mail: bidjan@ziggo.nl Registration code: 91D2F5AC2B939D43A875 注意 Vista/Windows 7 必须右键以管理员权限运行 PDFConverter.exe,否则安装会失败;

2010-12-07

二叉树 c++ 代码

class BinaryTree { public: BinaryTree(){root=0;} virtual ~BinaryTree() { Postorder(Delete,root); } void Erase() { Postorder(Delete,root); cout<<endl; } bool IsEmpty() const { return ((root)?false:true); } bool Root(int& x)const; void MakeTree(const int& element,BinaryTree& left,BinaryTree& right); void BreakTree(int& element,BinaryTree& left,BinaryTree& right); void Preorder(void(*Visit)(BinaryTreeNode *u)) { Preorder(Visit,root); } void Inorder(void(*Visit)(BinaryTreeNode *u)) { Inorder(Visit,root); } void Postorder(void(*Visit)(BinaryTreeNode *u)) { Postorder(Visit,root); } void Levelorder(void(*Visit)(BinaryTreeNode *u)); void PreOutput() { cout<<"前序输出的结果为:"<<endl; Preorder(Output,root); cout<<endl; } void InOutput() { cout<<"中序输出的结果为:"<<endl; Inorder(Output,root); cout<<endl; } void PostOutput() { cout<<"后序输出的结果为:"<<endl; Postorder(Output,root); cout<<endl; } void LevelOutput() { cout<<"层次遍历输出的结果为:"<<endl; Levelorder(Output); cout<<endl; } int Height() const{return Height(root);} BinaryTreeNode *CreatePost(int *pre,int *in,int n); BinaryTreeNode *CreatePost2(int *pre,int *in,int instart,int inend,int prestart); void OutputPost(BinaryTreeNode *t); private: BinaryTreeNode *root; void Preorder(void(*Visit)(BinaryTreeNode *u),BinaryTreeNode *t); void Inorder(void(*Visit)(BinaryTreeNode *u),BinaryTreeNode *t); void Postorder(void(*Visit)(BinaryTreeNode *u),BinaryTreeNode *t); static void Output(BinaryTreeNode *t) {cout<<t->data<<' ';} static void Delete(BinaryTreeNode *t) {delete t;} int Height(BinaryTreeNode *t) const; };

2009-12-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除