C++PrimerPlus学习——第十七章编程练习

17-1
不知道有没有理解错题意,参考list17.14

#include <iostream>int main()
{using std::cout;using std::cin;using std::endl;char ch;int count = 0;while (cin.peek() != '$'){cin.get(ch);count++;cout << ch;}cout << "\nThere are " << count << " characters before first '$'.\n";if (!cin.eof()){cin.get(ch);cout << endl << ch << " is next input character.\n";}else//好像把最后一个字符是$的时候也不会运行到这里,不知道为什么要加这个else{cout << "End of file rechaed.\n";std::exit(0);}return 0;
}

17-2
vs生成解决方案后,在命令行中打开.exe可执行文件,输入文件路径,文件内容,文件内容以CTRL+Z结束

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>int main(int argc, char* argv[])
{using namespace std;string filename;cout << "Enter name for new file: ";cin >> filename;ofstream fout(filename.c_str());char ch;if (fout.is_open()){cout << "Enter the file cotents:\n";while (cin.get(ch) && ch != EOF)fout << ch;}else{cout << "Can't open this file!";exit(EXIT_FAILURE);}fout.close();return 0;
}

17-3
换成用argc输入

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>int main(int argc, char* argv[])
{using namespace std;if (argc == 1){cerr << "\nno file\n";exit(EXIT_FAILURE);}char ch;ifstream fin(argv[1]);if (!fin.is_open()){cerr << argv[1] << "Couldn't open out file.\n";fin.clear();exit(EXIT_FAILURE);}ofstream fout(argv[2]);if (!fout.is_open()){cerr << argv[2] << " Couldn't open in file.\n";fout.clear();exit(EXIT_FAILURE);}while ((ch = fin.get()) != EOF)fout << ch;fin.close();fout.close();return 0;
}

17-4

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>int main(int argc, char* argv[])
{using namespace std;string line1, line2;ifstream fin1("C:/test1.txt");ifstream fin2("C:/test2.txt");ofstream fout("C:/test.txt");if (fin1.is_open() && fin2.is_open() && fout.is_open()){while (!fin1.eof() && !fin2.eof() && getline(fin1, line1) && getline(fin2, line2) && line1.size() > 0 && line2.size() > 0)fout << line1 << " " << line2 << endl;while (!fin1.eof() && getline(fin1, line1) && line1.size() > 0)fout << line1 << endl;while (!fin2.eof() && getline(fin2, line2) && line2.size() > 0)fout << line2 << endl;}else{cout << "Couldn't open files.";exit(EXIT_FAILURE);}fin1.close();fin2.close();fout.close();return 0;
}

17-5
跟之前一样,逐行读取,加到一起后,去重,输出

#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
#include <algorithm>
#include <list>int main(int argc, char* argv[])
{using namespace std;string str;list<string> mat, pat, final;ifstream fin1("C:/test1.txt");ifstream fin2("C:/test2.txt");ofstream fout("C:/matnpat.dat");if (fin1.is_open() && fin2.is_open() && fout.is_open()){while (!fin1.eof()){getline(fin1, str);mat.push_back(str);}while (!fin2.eof()){getline(fin2, str);pat.push_back(str);}}else{cout << "Couldn't open files.";exit(EXIT_FAILURE);}mat.sort();pat.sort();final = mat;final.merge(pat);final.unique();final.sort();list<string>::iterator itor = final.begin();for (int i = 0; i < final.size(); i++)fout << *itor++ << " " << endl;fin1.close();fin2.close();fout.close();return 0;
}

17-6
enum classkind { Employee, Manager, Fink, Highfink };在test.txt中分别用0,1,2,3表示
增加了writeall和getall函数用于保存文件和输入,SetAll等其他函数仍然用的是之前写的没变
emp.h

#ifndef EMP_H_
#define EMP_H_#include <iostream>
#include <string>
#include <fstream>enum classkind { Employee, Manager, Fink, Highfink };class abstr_emp
{
private:std::string fname;std::string lname;std::string job;
public:abstr_emp();abstr_emp(const std::string& fn, const std::string& ln, const std::string& j);virtual void ShowAll() const;virtual void SetAll();friend std::ostream& operator<<(std::ostream& os, const abstr_emp& e);virtual ~abstr_emp() = 0;virtual void writeall(std::ofstream& ofs);virtual void getall(std::ifstream& ifs);
};class employee :public abstr_emp
{
public:employee();employee(const std::string& fn, const std::string& ln, const std::string& j);virtual void ShowAll() const;virtual void SetAll();virtual void writeall(std::ofstream& ofs);virtual void getall(std::ifstream& ifs);
};class manager :virtual public abstr_emp
{
private:int inchargeof;
protected:void Data() const;void Get();int InChargeOf() const { return inchargeof; }int& InChargeOf() { return inchargeof; }
public:manager();manager(const std::string& fn, const std::string& ln, const std::string& j, int ico = 0);manager(const abstr_emp& e, int ico);manager(const manager& m);virtual void ShowAll() const;virtual void SetAll();virtual void writeall(std::ofstream& ofs);virtual void getall(std::ifstream& ifs);void getIncharge() {std::cout << "Enter inchargeof: ";}void writeInCharge(std::ofstream& ofs) {ofs << inchargeof << std::endl;}void readInCharge(std::ifstream& ifs){ifs >> inchargeof;}
};class fink :virtual public abstr_emp
{
private:std::string reportsto;
protected:void Data() const;void Get();const std::string ReportsTo() const { return reportsto; }std::string& ReportsTo() { return reportsto; }
public:fink();fink(const std::string& fn, const std::string& ln, const std::string& j, const std::string& rpo);fink(const abstr_emp& e, const std::string& rpo);fink(const fink& e);virtual void ShowAll() const;virtual void SetAll();virtual void writeall(std::ofstream& ofs);virtual void getall(std::ifstream& ifs);void getReportsTo() {std::cout << "Enter reports to: ";}void writeReortsto(std::ofstream& ofs) {ofs << reportsto << std::endl;}void readReortsto(std::ifstream& ifs){ifs >> reportsto;}
};class highfink :public manager, public fink
{
public:highfink();highfink(const std::string& fn, const std::string& ln, const std::string& j, const std::string& rpo, int ico);highfink(const abstr_emp& e, const std::string& rpo, int ico);highfink(const fink& f, int ico);highfink(const manager& m, const std::string& rpo);highfink(const highfink& h);virtual void ShowAll() const;virtual void SetAll();virtual void writeall(std::ofstream& ofs);virtual void getall(std::ifstream& ifs);
};#endif // !EMP_H_

emp.cpp

#include <iostream>
#include <fstream>
#include <string>
#include "emp.h"
using std::cout;
using std::cin;
using std::endl;abstr_emp::~abstr_emp() {}void abstr_emp::writeall(std::ofstream& ofs)
{ofs << fname << "\n" << lname << "\n" << job << "\n";
}void abstr_emp::getall(std::ifstream& ifs)
{getline(ifs, fname);getline(ifs, lname);getline(ifs, job);
}abstr_emp::abstr_emp()
{fname = "Null";lname = "Null";job = "Null";
}abstr_emp::abstr_emp(const std::string& fn, const std::string& ln, const std::string& j)
{fname = fn;lname = ln;job = j;
}void abstr_emp::ShowAll() const
{cout << "Fullname: " << fname << endl;cout << "Lastname: " << lname << endl;cout << "Job: " << job << endl;
}void abstr_emp::SetAll()
{cout << "Enter firstname: ";cin >> fname;cout << "Enter lastname: ";cin >> lname;cout << "Ente job: ";cin.get();getline(cin, job);
}std::ostream& operator<<(std::ostream& os, const abstr_emp& e)
{cout << e.fname << " " << e.lname << " " << e.job << endl;return os;// TODO: 在此处插入 return 语句
}employee::employee() :abstr_emp()
{
}employee::employee(const std::string& fn, const std::string& ln, const std::string& j) : abstr_emp(fn, ln, j)
{
}void employee::ShowAll() const
{abstr_emp::ShowAll();
}void employee::SetAll()
{abstr_emp::SetAll();
}void employee::writeall(std::ofstream& ofs)
{ofs << Employee << endl;abstr_emp::writeall(ofs);
}void employee::getall(std::ifstream& ifs)
{abstr_emp::getall(ifs);
}void manager::Data() const
{cout << "Inchargeof: " << inchargeof << endl;
}void manager::Get()
{cout << "Enter Inchargeof: ";cin >> inchargeof;
}manager::manager() :abstr_emp()
{inchargeof = 0;
}manager::manager(const std::string& fn, const std::string& ln, const std::string& j, int ico) : abstr_emp(fn, ln, j)
{inchargeof = ico;
}manager::manager(const abstr_emp& e, int ico) : abstr_emp(e), inchargeof(0)
{
}manager::manager(const manager& m) : abstr_emp(m)
{inchargeof = m.inchargeof;
}void manager::ShowAll() const
{abstr_emp::ShowAll();cout << "Inchargeof: " << inchargeof << endl;
}void manager::SetAll()
{abstr_emp::SetAll();cout << "Enter inchargeof: ";cin >> inchargeof;
}void manager::writeall(std::ofstream& ofs)
{ofs << Manager << endl;abstr_emp::writeall(ofs);ofs << inchargeof << endl;
}void manager::getall(std::ifstream& ifs)
{abstr_emp::getall(ifs);ifs >> inchargeof;
}void fink::Data() const
{cout << "Reportsto: " << reportsto << endl;
}void fink::Get()
{cout << "Enter resportsto: ";cin.get();getline(cin, reportsto);
}fink::fink() :abstr_emp()
{reportsto = "Null";
}fink::fink(const std::string& fn, const std::string& ln, const std::string& j, const std::string& rpo) : abstr_emp(fn, ln, j), reportsto(rpo)
{
}fink::fink(const abstr_emp& e, const std::string& rpo) : abstr_emp(e), reportsto(rpo)
{
}fink::fink(const fink& e) : abstr_emp(e)
{reportsto = e.reportsto;
}void fink::ShowAll() const
{abstr_emp::ShowAll();cout << "Reports to: " << reportsto << endl;
}void fink::SetAll()
{abstr_emp::SetAll();cout << "Enter reports to: ";cin.get();getline(cin, reportsto);
}void fink::writeall(std::ofstream& ofs)
{ofs << Fink << endl;abstr_emp::writeall(ofs);ofs << reportsto << endl;
}void fink::getall(std::ifstream& ifs)
{abstr_emp::getall(ifs);ifs >> reportsto;
}highfink::highfink() :abstr_emp(), manager(), fink()
{
}highfink::highfink(const std::string& fn, const std::string& ln, const std::string& j, const std::string& rpo, int ico) : abstr_emp(fn, ln, j), manager(fn, ln, j, ico), fink(fn, ln, j, rpo)
{
}highfink::highfink(const abstr_emp& e, const std::string& rpo, int ico) : abstr_emp(e), manager(e, ico), fink(e, rpo)
{
}highfink::highfink(const fink& f, int ico) : abstr_emp(f), manager(f, ico), fink(f)
{
}highfink::highfink(const manager& m, const std::string& rpo) : abstr_emp(m), manager(m), fink(m, rpo)
{
}highfink::highfink(const highfink& h) : abstr_emp(h), manager(h), fink(h)
{
}void highfink::ShowAll() const
{abstr_emp::ShowAll();manager::Data();fink::Data();
}void highfink::SetAll()
{abstr_emp::SetAll();manager::Get();fink::Get();
}void highfink::writeall(std::ofstream& ofs)
{ofs << Highfink << endl;abstr_emp::writeall(ofs);manager::writeall(ofs);fink::writeReortsto(ofs);
}void highfink::getall(std::ifstream& ifs)
{abstr_emp::getall(ifs);manager::readInCharge(ifs);fink::readReortsto(ifs);
}

main.cpp

#include <iostream>
#include "emp.h"
#include <cstdlib>
#include <fstream>
const int MAX = 10;
const char* file = "c:/test.txt";int main()
{using namespace std;char ch;int i;abstr_emp* pc[MAX];ifstream fin;fin.open(file);if (!fin.is_open()){cout << "Couldn't open files!\n"; exit(EXIT_FAILURE);}int classtype;i = 0;while ((fin >> classtype).get(ch)){switch (classtype){case Employee: pc[i] = new employee;break;case Manager:  pc[i] = new manager;break;case Fink:	   pc[i] = new fink;break;case Highfink: pc[i] = new highfink;break;}pc[i]->getall(fin);pc[i]->ShowAll();}fin.close();ofstream fout(file, ios::out | ios::app);if (!fout.is_open()){cerr << "Couldn't open file!";exit(EXIT_FAILURE);}int index = 0;cout << "Please choose the class you want to enter:\n"<< "e for employee, m for manager,\n"<< "f for fink, h for highfink,\n"<< "q to quit\n";while (cin >> ch && index < MAX){if (ch == 'q')break;switch (ch){case 'e': pc[index] = new employee;break;case 'm': pc[index] = new manager;break;case 'f': pc[index] = new fink;break;case 'h': pc[index] = new highfink;break;}pc[index]->SetAll();index++;cout << "Please choose the class you want to enter:\n"<< "e for employee, m for manager,\n"<< "f for fink, h for highfink,\n"<< "q to quit\n";}for (i = 0; i < index; i++)pc[i]->writeall(fout);fout.close();fin.clear();fin.open(file);if (fin.is_open()){cout << "Here are the contents of the " << file << " file:\n";int classtype;i = 0;while ((fin >> classtype).get(ch)){switch (classtype){case Employee: pc[i] = new employee;break;case Manager:  pc[i] = new manager;break;case Fink:	   pc[i] = new fink;break;case Highfink: pc[i] = new highfink;break;}pc[i]->getall(fin);pc[i]->ShowAll();}fin.close();}cout << "Done.\n";return 0;
}

17.7
不知道为什么从.dat中读取的信息有乱码

#include <iostream>
#include <vector>
#include <string>
#include <iterator>
#include <cstdlib>
#include <algorithm>
#include <fstream>
using namespace std;class Store
{
private:ofstream& fout;
public:Store(ofstream& os) :fout(os) {}void operator()(const string& str);
};void ShowStr(const string str);
void GetStrs(ifstream& fin, vector<string>& vistr);int main()
{vector<string> vostr;string temp;cout << "Enter string (empty line to quit):\n";while (getline(cin, temp) && temp[0] != '\0')vostr.push_back(temp);cout << "Here is your input.\n";for_each(vostr.begin(), vostr.end(), ShowStr);ofstream fout("C:\strings.dat", ios_base::out | ios_base::binary);for_each(vostr.begin(), vostr.end(), Store(fout));fout.close();vector<string> vistr;ifstream fin("C:\strings.dat", ios_base::in | ios_base::binary);if (!fin.is_open()){cerr << "Couldn't open file for input.\n";exit(EXIT_FAILURE);}GetStrs(fin, vistr);cout << "\nHere are the strings read from the file:\n";for_each(vistr.begin(), vistr.end(), ShowStr);return 0;
}void ShowStr(const string str)
{cout << str;
}void GetStrs(ifstream& fin, vector<string>& vstr)
{char* s;size_t len;while (fin.read((char*)&len, sizeof(size_t))){s = new char[len];fin.read(s, len);s[len + 1] = '\0';vstr.push_back(s);}
}void Store::operator()(const string& str)
{size_t len = str.size();fout.write((char*)&len, sizeof(size_t));fout.write(str.data(), len);
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/550508.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数字图像处理基础与应用学习,第二章

计算灰度直方图和RGB三个通道的灰度直方图 Tips 1.计算灰度 cv2.calcHist(images, channels, mask, histSize, ranges[, hist[, accumulate ]]) imaes:输入的图像 channels:选择图像的通道 mask:掩膜&#xff0c;是一个大小和image一样的np数组&#xff0c;其中把需要处理的部分…

数字图像处理基础与应用 第四章

3-1 (1) 感觉就是图像模糊了&#xff0c;并没有去噪 from cv2 import cv2 import numpy as np import randomdef spNoise(img,prob):# 添加椒盐噪声,prob:噪声比例 output np.zeros(img.shape,np.uint8)thres 1 - prob for i in range(img.shape[0]):for j in range(img.sha…

数字图像处理基础与应用 第五章

5-1感觉这些方法主体都差不多&#xff0c;就是微分算子不同&#xff0c;懒得一个个写了 from cv2 import cv2 import numpy as np import randomdef singleDirectionsharpen(img, N3):p N // 2img_shape np.shape(img)out np.zeros(img_shape)for i in range(img_shape[0])…

新版scipy中的imread,imsave,imresize被弃用解决方法

阅读文献代码时发现新版scipy中的imread,imsave,imresize被弃用报错 搜索了一下发现可以用imageio中的imread和imsave代替原有的&#xff0c;用numpy的reshape来代替imresize 试了一下&#xff0c;不太行&#xff0c;文献中imread有mode‘L’&#xff0c;即读取灰度图&#xff…

anaconda中tensorflow-estimator版本应与tensorflow-gpu版本相同

把tensorflow升级到2.1.0版本是发现import tensorflow as tf出错 发现是anaconda安装的tensorflow-estimator版本是2.2.0&#xff0c;将版本回退到2.1.0后解决了问题

tf.contrib在tf2中无法使用

在尝试文献中代码时发现tf.comtrib无法使用 官方文档中说 It is still possible to run 1.X code, unmodified (except for contrib), in TensorFlow 2.0: import tensorflow.compat.v1 as tf tf.disable_v2_behavior()除了contrib应该都用能两行代码解决问题,contrib则用kera…

发现了imageio文档中有代替scipy.misc的说明

原文&#xff1a;https://imageio.readthedocs.io/en/latest/scipy.html?highlightimread imageio.imread可以代替scipy.misc.imread 用pilmode代替mode 用as_gray代替flatten pilmode类型&#xff1a; ‘L’ (8-bit pixels, grayscale) ‘P’ (8-bit pixels, mapped to an…

fastai学习笔记——安装

虽然说是推荐linux&#xff0c;windows可能有bug&#xff0c;但是我还是没办法只用linux win10anaconda python3.7 安装很简单 conda install -c fastchan fastai anaconda 好了也没发现有啥问题 测试torch是否可用 import torch cuda.test.is_available()True

fastai学习——第一个bug

跟着视频学习&#xff0c;在运行第一段测试代码的时候出现问题 from fastai.vision.all import * path untar_data(URLs.PETS)/imagesdef is_cat(x): return x[0].isupper() dls ImageDataLoaders.from_name_func(path, get_image_files(path), valid_pct0.2, seed42,label_…

fastai学习:01_intro Questionnaire

fastAI Questionnaire 感觉还挺多的&#xff0c;怪不得说每一课要额外8小时进行学习。 1.Do you need these for deep learning? Lots of math T / F Lots of data T / F Lots of expensive computers T / F A PhD T / F F F F F 2.Name five areas where deep learning is …

fastai学习——第二个问题

第二节课需要使用bing image search api获取bing图片搜索中的熊图片&#xff0c;此时发现获取api需要注册azure&#xff0c;卡在绑定卡上很久&#xff0c;想了想还要去弄一张带visa的卡&#xff0c;还是算了&#xff0c;就用猫狗大战数据集实验吧&#xff0c;按照与学习视频中类…

fastai学习:02_production Questionnaire

1.Where do text models currently have a major deficiency? Deep learning is currently not good at generating correct responses! We don’t currently have a reliable way to, for instance, combine a knowledge base of medical information with a deep learning m…

fastai学习:04_mnist_basics Questionnaire

1.How is a grayscale image represented on a computer? How about a color image? 灰度图&#xff1a;单通道&#xff0c;0-256 彩色图&#xff1a;三通道RGB或HSV&#xff0c;0-256 2.How are the files and folders in the MNIST_SAMPLE dataset structured? Why? 分为…

fastai学习:05_pet_breeds Questionnaire

1.Why do we first resize to a large size on the CPU, and then to a smaller size on the GPU? 首先&#xff0c;在训练模型时&#xff0c;我们希望能够将图片的尺寸统一&#xff0c;整理为张量&#xff0c;传入GPU&#xff0c;我们还希望最大限度地减少执行不同增强计算的…

fastai学习:06_multicat Questionnarie

1.How could multi-label classification improve the usability of the bear classifier? 可以对不存在的熊进行分类 2.How do we encode the dependent variable in a multi-label classification problem? One-hot encoding: Using a vector of zeros, with a one in each…

【论文阅读笔记】Detecting Camouflaged Object in Frequency Domain

1.论文介绍 Detecting Camouflaged Object in Frequency Domain 基于频域的视频目标检测 2022年发表于CVPR [Paper] [Code] 2.摘要 隐藏目标检测&#xff08;COD&#xff09;旨在识别完美嵌入其环境中的目标&#xff0c;在医学&#xff0c;艺术和农业等领域有各种下游应用。…

ubuntu中使用firefox浏览器播放bilibili的h5网页视频

安装好系统后&#xff0c;直接firefox打开bilibili显示没有flash插件 找了一圈没有发现自动播放h5的选项 搜索了一下发现可能是需要解码器 sudo apt-get install ubuntu-restricted-extras就能看了

ubuntu挂起唤醒后十几秒钟就自动熄屏一次

昨天晚上笔记本没关机&#xff0c;ubuntu挂起一晚上&#xff0c;今天早上打开电脑&#xff0c;发现每过十几秒钟就自动熄屏一次&#xff0c;重启之后好了&#xff0c;不知道什么原因 搜索了一下说可能是DPMS的问题&#xff0c;用xset -dpms可以关闭电源管理选项 但是本来的设置…

python3 上传文件到目标机器_Python3 +服务器搭建私人云盘,再也不怕限速了

先来看看效果电脑访问手机访问Windows版本搭建(1).首先你需要在你的电脑上或者服务器上安装Python3.X。(2).然后通过如下指令来安装updog库&#xff0c;网上有很多关于updog的介绍&#xff0c;我这里就不详细说pip3 install updog(3).静静的等他安装完成&#xff0c;然后执行以…

Ubuntu下绘图软件krita64位无中文问题

ubuntu20 sudo apt install krita-l10n 就有了 参考&#xff1a;https://bbs.deepin.org/post/181669