一、虚拟主机1.基于域名的虚拟主机www.zhang.com/var/html/wwwblog.zhang.com/var/html/blogbbs.zhang.com/var/html/bbs#创建虚拟机目录mkdir/var/html/{www,blog,bbs}-ptree/var/html//var/html/├──bbs├──blog└──www#创建默认文件touch/var/html/{www,blog,bbs}/inde..
分类:
Web程序 时间:
2017-04-24 12:08:56
阅读次数:
310
一、ptree:查看文件目录层次二、pgrep进程名:可以查看进程id三、chkconfig--list:查看服务开启状态;chkconfig--list|grep进程名:查看指定进程;chkconfig--level2345sshdon/off:在指定级别上开关服务;四、ps-aux:查看所有进程状态:z:代表僵尸进程;五、crontab-l:查看定时..
分类:
系统相关 时间:
2016-12-06 11:35:39
阅读次数:
167
// FirstTest.cpp : 定义控制台应用程序的入口点。
//ptree解析ini文件,get(treename, translator) :translator类型实例
#include "stdafx.h"
#include
#include
#include
using namespace std;
int main()
{
boost::property...
分类:
其他好文 时间:
2015-03-02 11:18:22
阅读次数:
124
当使用xml_parser进行读xml时,如果遇到中文字符会出现解析错误。网上有解决方案说使用wptree来实现,但当使用wptree来写xml时也会出错。而使用ptree来写中文时不会出错。综合以上信息,尝试使用ptree来写xml,而用wptree来读。以一个demo来说明吧。1 //包含文件2...
分类:
其他好文 时间:
2015-01-12 17:14:21
阅读次数:
203
ps -e 查看终端下所有用户的进程ps -t ps/2 查看某终端的进程ps -u oracle 查看某用户的进程ps -f 以长格式列出进程pgrep 已知进程查IDpgrep -u 查看用户的进程号ptree 进程树kill 杀死进程
分类:
系统相关 时间:
2014-12-10 13:56:59
阅读次数:
139
树的存储方式
//树的双亲表示
typedef struct{ //节点结构
ElemType data; //元素
int parent; //双亲位置
}PTNode;
typedef struct{ //树
PTNode nodes[Max];
int n; //树的节点个数
}PTree;
//孩子表示法
typedef struct{ //孩子结...
分类:
其他好文 时间:
2014-11-29 09:02:55
阅读次数:
199
我的boost为1.56而不是1.55 boost在xml的例子给出了一段写xml文件的代码,我简化如下:void debug_settings::save(const std::string &filename){ using boost::property_tree::ptree; ...
分类:
其他好文 时间:
2014-11-02 23:47:14
阅读次数:
537
#include
#include
#include
using namespace std;
struct BinTree {
int data;
struct BinTree *left;
struct BinTree *right;
};
struct BinPost {
BinTree *pTree;
bool isFirst;
};
...
分类:
其他好文 时间:
2014-10-30 22:45:09
阅读次数:
207
引入boost::property_tree::ptree解析json时,在多线程情况下经常crash。 最后在stackoverflow中找到答案。 ????在ptree下层使用的spirit库默认不是线程安全的。 需要加一个 #define?BOOST_SPIRIT_THRE...
分类:
其他好文 时间:
2014-10-14 17:41:30
阅读次数:
334
//树的存储结构//双亲存储结构typedef struct{ int data;//结点的值 int parent;//指向双亲位置的伪指针} PTree[maxsize];//孩子存储结构typedef struct node{ int data;//结点的值 struct node *sons...
分类:
其他好文 时间:
2014-10-06 17:07:30
阅读次数:
190