
【c and c++】
baitxttgchx
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
双向链表的创建删除
//双向链表 #include #include #include typedef struct node { char name[20]; struct node *prior,*next; }stud; //创建双向链表 stud *creat(int n) { st转载 2011-09-29 08:35:35 · 542 阅读 · 0 评论 -
boost的安装使用
转:http://blog.csdn.net/GeoLiMao/archive/2010/10/15/5943605.aspx 自己也按照这个教程试过,是可以的~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~· 1:下载Boost。文件为boost_1_44_0.zip。 2:下载Boost Jam。文件转载 2012-02-24 10:35:00 · 530 阅读 · 0 评论 -
最简单的boost安装教程
网上看到了很多复杂的boost教程,下面是两条yum命令,第二条是安装依赖包。。。 sudo yum install boost sudo yum install boost-devel原创 2012-07-11 21:54:31 · 957 阅读 · 0 评论