码迷,mamicode.com
首页 >  
搜索关键字:ptree    ( 37个结果
apache虚拟主机、日志轮询、日志统计、去版本优化
一、虚拟主机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
linux基本命令
一、ptree:查看文件目录层次二、pgrep进程名:可以查看进程id三、chkconfig--list:查看服务开启状态;chkconfig--list|grep进程名:查看指定进程;chkconfig--level2345sshdon/off:在指定级别上开关服务;四、ps-aux:查看所有进程状态:z:代表僵尸进程;五、crontab-l:查看定时..
分类:系统相关   时间:2016-12-06 11:35:39    阅读次数:167
boost库之ptree的ini配置文件解析
// 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
boost.xml_parser中文字符问题 (转)
当使用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格式化输出xml
我的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
is boost::property_tree::ptree thread safe?
引入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
37条   上一页 1 2 3 4 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!