Chinaunix首页 | 论坛 | 博客
  • 博客访问: 519594
  • 博文数量: 184
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1172
  • 用 户 组: 普通用户
  • 注册时间: 2016-06-21 13:40
个人简介

技术改变命运

文章分类

全部博文(184)

文章存档

2020年(16)

2017年(12)

2016年(156)

我的朋友

发布时间:2016-08-03 22:29:45

标准I/O库的一个不足之处是效率不高,这与他需要复制的数据有关 ,当使用每次一行函数gets和puts时,通常需要复制两次数据:一次是在内核和标准I/O缓冲区之间,第二次是在标准I/O缓冲区和用户程序的行缓冲区之间。......【阅读全文】

阅读(647) | 评论(0) | 转发(0)

发布时间:2016-08-03 16:46:01

Evaluate the value of an arithmetic expression in Reverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another expression.Some examples: ["2", "1", "+", "3", "*"] -> ((2 + 1) * 3) -> 9 ["4", "13", "5", "/", "+"] -> (4 + (13 / 5)) -> 6.........【阅读全文】

阅读(1170) | 评论(0) | 转发(0)

发布时间:2016-08-03 08:55:41

......【阅读全文】

阅读(1607) | 评论(0) | 转发(0)

发布时间:2016-08-03 07:59:03

c++空类默认产生哪些类成员函数:class Empty{  public:      Empty(); // 缺省构造函数      Empty( const Empty& ); // 拷贝构造函数      ~Empty(); // 析构函数       Emp.........【阅读全文】

阅读(1826) | 评论(0) | 转发(0)

发布时间:2016-08-02 09:20:39

......【阅读全文】

阅读(841) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册