会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
LNU is Not Unix
博客园
首页
新随笔
联系
订阅
管理
2017年7月2日
Boost:格式化输出--Format
摘要: boost::format类提供了类似C语言里'printf'功能的格式化输出能力,功能更强大。 所需头文件: #include <boost/format.hpp> 示例代码: #include <iostream> #include <string> #include <boost/format
阅读全文
posted @ 2017-07-02 17:41 impressiver
阅读(4937)
评论(0)
推荐(0)
2016年5月28日
单链表反序
摘要: typedef struct node *linklist; //revese linklist linklist reverselinklist1(linklist l) { linklist current, p; if(l == NULL) { return NULL; } current =
阅读全文
posted @ 2016-05-28 00:10 impressiver
阅读(355)
评论(0)
推荐(0)
2016年5月27日
抽象数据类型
摘要: 描述抽象数据类型的标准格式: ADT 抽象数据类型名 Data 数据元素之间逻辑关系的定义 Operation 操作 endADT
阅读全文
posted @ 2016-05-27 12:10 impressiver
阅读(127)
评论(0)
推荐(0)
公告