资源简介
Essential c++ 高清pdf+随书源码
代码片段和文件信息
/**************************************************
* Essential C++ -- Stanley Lippman
* Addison-Wesley
* ISBN 0-201-48518-4
* homepage: www.objectwrite.com
* email: slippman@objectwrite.com
*************************************************/
#include
#include
using namespace std;
int ex1_5_string()
{
string user_name;
cout << “Please enter your name: “;
cin >> user_name;
switch ( user_name.size() ){
case 0:
cout << “Ah the user with no name. “
<< “Well ok hi user with no name\n“;
break;
case 1:
cout << “A 1-character name? Hmm have you read Kafka?: “
<< “hello “ << user_name << endl;
break;
default:
// any string longer than 1 character
cout << “Hello “ << user_name
<< “ -- happy to make your acquaintance!\n“;
break;
}
return 0;
}
#include
#include
#include
using namespace std;
int ex1_5_cstyle()
{
// must allocate a fixed size
const int nm_size = 128;
char user_name[ nm_size ];
cout << “Please enter your name: “;
cin >> setw( nm_size ) >> user_name;
switch ( strlen( user_name ))
{
// case labels the same for 0 1
case 127:
// maybe string was truncated by setw()
cout << “That is a very big name indeed -- “
<< “we may have needed to shorten it!\n“
<< “In any case\n“;
// no break -- we fall through ...
default:
// the 127 case drops through to here -- no break
cout << “Hello “ << user_name
<< “ -- happy to make your acquaintance!\n“;
break;
}
return 0;
}
#include
#include
using namespace std;
void ex1_6_vector()
{
vector ivec;
int ival;
while ( cin >> ival )
ivec.push_back( ival );
// we could have calculated the sum as we entered the
// values but the idea is to iterate over the vector ...
int sum = 0;
for ( int ix = 0; ix < ivec.size(); ++ix )
{
cout << endl << ix << “) “ << ivec[ ix ];
sum += ivec[ ix ]; }
int average = sum / ivec.size();
cout << “Sum of “ << ivec.size()
<< “ elements: “ << sum
<< “. Average: “ << average << endl;
}
void ex1_6_array()
{
const int arr_size = 128;
int ia[ arr_size ];
int ival icnt = 0;
while ( cin >> ival && icnt < arr_size )
ia[ icnt++ ] = ival;
// icnt is 1 greater than number of elements!
int sum = 0;
for ( int ix = 0; ix < icnt; ++ix )
sum += ia[ ix ];
int average = sum / icnt;
cout << endl
<< “Sum of “ << icnt
<< “ elements: “ << sum
<< “. Average: “ << average << endl;
}
#include
#include
void ex1_xtra1()
{
vector< string* > sp_vec;
string st;
cout << “P
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 366333 1999-12-07 13:25 codeEssential\Appendix.pdf
文件 4471 1999-12-07 08:06 codeEssential\chapter1\ch1solutions\ch1solutions.dsp
文件 547 1999-12-07 01:04 codeEssential\chapter1\ch1solutions\ch1solutions.dsw
文件 41984 1999-12-07 13:04 codeEssential\chapter1\ch1solutions\ch1solutions.ncb
文件 54784 1999-12-07 13:04 codeEssential\chapter1\ch1solutions\ch1solutions.opt
文件 5157 1999-12-07 12:58 codeEssential\chapter1\ch1solutions\ch1solutions.plg
文件 371 1999-12-07 13:01 codeEssential\chapter1\ch1solutions\input.txt
文件 368 1999-12-07 13:04 codeEssential\chapter1\ch1solutions\input.txt.sort
文件 5970 1999-12-07 13:13 codeEssential\chapter1\ch1solutions\main.cpp
文件 124 1999-12-07 01:09 codeEssential\chapter1\ch1solutions\text.sort
文件 114 1999-12-07 12:59 codeEssential\chapter1\ch1solutions\text.txt
文件 112 1999-12-07 13:02 codeEssential\chapter1\ch1solutions\text.txt.sort
文件 7943 1999-12-07 13:13 codeEssential\chapter1\chap1\ch1.cpp
文件 3344 1999-12-07 13:14 codeEssential\chapter1\chap1\ch1.h
文件 491 1999-12-07 13:14 codeEssential\chapter1\chap1\ch1_main.cpp
文件 4393 1999-12-06 08:18 codeEssential\chapter1\chap1\chap1.dsp
文件 533 1999-12-06 08:14 codeEssential\chapter1\chap1\chap1.dsw
文件 33792 1999-12-06 08:18 codeEssential\chapter1\chap1\chap1.ncb
文件 53760 1999-12-06 08:18 codeEssential\chapter1\chap1\chap1.opt
文件 1282 1999-12-06 08:16 codeEssential\chapter1\chap1\chap1.plg
文件 6359 2017-02-23 14:42 codeEssential\chapter1\chap1\chap1.vcxproj
文件 1113 2017-02-23 14:42 codeEssential\chapter1\chap1\chap1.vcxproj.filters
文件 6905 1999-12-07 13:15 codeEssential\chapter2\ch2solutions\ch2main.cpp
文件 3460 1999-12-07 08:06 codeEssential\chapter2\ch2solutions\ch2solutions.dsp
文件 547 1999-12-07 08:06 codeEssential\chapter2\ch2solutions\ch2solutions.dsw
文件 33792 1999-12-07 08:09 codeEssential\chapter2\ch2solutions\ch2solutions.ncb
文件 53760 1999-12-07 08:09 codeEssential\chapter2\ch2solutions\ch2solutions.opt
文件 3760 1999-12-07 08:09 codeEssential\chapter2\ch2solutions\ch2solutions.plg
文件 9140 1999-12-07 13:15 codeEssential\chapter2\chap2\c2_main.cpp
文件 4274 1999-12-06 08:37 codeEssential\chapter2\chap2\chap2.dsp
............此处省略126个文件信息
相关资源
- Thinking in c++ 上下册 书本源码
- C++编写dll和使用dll(最简单的vs2010)
- 跌倒检测-OPENCV-VC++
- Essential C++中文版(全)
- c++版神经网络实现
- C++编程有限元公式
- 《深入学习c++string》2.1版
- 银行家算法C++实现穷举所有安全序列
- C++课程设计-图书信息管理系统含源码
- C++使用Openssl进行RSA加密解密及签名验
- 三维五角星
- C++蚁群算法求解TSP问题
- C语言编的数据库管理系统DBMS
- C++ Template 完全导引简体中文版
- 中国象棋对弈(MFC单机版)
- IP包流量分析程序.rar含程序+源码WIN
- 谭浩强c++第二章例题源码
- C++远控源码demo
- Seamless R and C++ Integration with Rcpp
- 用vc++6.0mfc对话框做的钟表
- C++绘制地图
- 工业组态软件VC++简单实现
- 基于opencv C++实现毛衣衣服的瑕疵检测
- apriori 算法 c++ 实现 文件读入
- 时间片轮转法RRC++实现
- Visual Studio 2012制作MFC计算器-TC王者
- C++用Opencv将图片转化为灰度图并保存
- VC6.0 C++ MD5验证源码文件和字符串验证
- 数据结构与算法分析C++描述Larrynyhof
- C和C++嵌入式系统编程面试题 C和C++
评论
共有 条评论