c++简单程序设计-5

编程实验部分
1.vector3.cpp
#include <iostream>
#include <vector>
#include <string>
using namespace std;// 函数声明 
void output1(vector<string> &);  
void output2(vector<string> &);  int main()
{vector<string>likes, dislikes; // 创建vector<string>对象likes和dislikes
    likes.push_back("favorite book");// 为vector<string>数组对象likes添加元素值likes.push_back("music");likes.push_back("film");likes.push_back("anime");cout << "-----I like these-----" << endl;output1(likes);// 调用子函数输出vector<string>数组对象likes的元素值 dislikes.push_back("sport");// 为vector<string>数组对象dislikes添加元素值 dislikes.push_back("sportsman");cout << "-----I dislike these-----" << endl;output1(dislikes);// 调用子函数输出vector<string>数组对象dislikes的元素值 
    likes.swap(dislikes);// 交换vector<string>对象likes和dislikes的元素值 
cout << "-----I likes these-----" << endl;output2(likes);// 调用子函数输出vector<string>数组对象likes的元素值 cout << "-----I dislikes these-----" << endl;output2(dislikes);// 调用子函数输出vector<string>数组对象dislikes的元素值 return 0; }// 函数实现 // 以下标方式输出vector<string>数组对象v的元素值 void output1(vector<string> &v) {int i;for(i=0;i<v.size();i++){cout<<v[i]<<endl;} }// 函数实现 // 以迭代器方式输出vector<string>数组对象v的元素值 void output2(vector<string> &v) {int i;for(i=0;i<v.size();i++){cout<<v[i]<<endl;} }

 

 

 2. 6-17的修改

#include<iostream>
using namespace std;int main(){                   //法1 int i=9; int *p;p=&i;cout<<"The value at p:"<<*p;return 0;
}int main(){                   //法2 int i=9; int *p=&i;cout<<"The value at p:"<<*p;return 0;
}int main(){                   //法3 int i; int *p=&i;*p=9;cout<<"The value at p:"<<*p;return 0;
}
//原题指针没有初始化会随机指向某处内存,导致程序崩溃 
//根据书上的模板写了三种方法 

3. 6-18的修改

#include<iostream>
using namespace std;int fnl(){int *p=new int(5);return *p;delete p;   //原程序未用delete加以释放,会导致内存泄漏 
}int main(){int a=fnl();cout<<"the value of a is:"<<a;return 0;
}

4.动态矩阵类Matrix

 

//matrix.h
#ifndef MATRIX_H
#define MATRIX_H
class Matrix {
public:Matrix(int n); // 构造函数,构造一个n*n的矩阵 Matrix(int n, int m); // 构造函数,构造一个n*m的矩阵 Matrix(const Matrix &X); // 复制构造函数,使用已有的矩阵X构造 ~Matrix(); //析构函数 void setMatrix(const float *pvalue); // 矩阵赋初值,用pvalue指向的内存块数据为矩阵赋值 void printMatrix() const; // 显示矩阵inline float &element(int i, int j) { return *(p + ((i - 1)*cols) + j - 1); }; //返回矩阵第i行第j列元素的引用inline float element(int i, int j) const ;// 返回矩阵第i行第j列元素的值 void setElement(int i, int j, int value) ; //设置矩阵第i行第j列元素值为valueinline int getLines() const { return lines; }; //返回矩阵行数 inline int  getCols() const { return cols; }; //返回矩阵列数 
private:int lines;    // 矩阵行数int cols;      // 矩阵列数 float *p;   // 指向存放矩阵数据的内存块的首地址 
};
#endif

 

//main.cpp
#include "Matrix.h"
#include<iostream>
using namespace std;
int main() {Matrix A(3);Matrix B(3, 2);Matrix C(B);const float a[9] = { 1,2,3,4,5,6,7,8,9 }, b[6] = { 10,20,30,40,50,60 };A.setMatrix(a);B.setMatrix(b);C.setMatrix(b);cout << "矩阵A为:" << endl;A.printMatrix();cout << "矩阵B为:" << endl;B.printMatrix();cout << "B的复制构造函数矩阵C为:" << endl;C.printMatrix();float *x = &A.element(1, 1);cout << "矩阵A第1行第1列元素的引用:" << x<<endl;cout << "矩阵第1行第1列元素的值:" << A.element(1, 1) << endl;A.setElement(1, 1, 6);A.setElement(2, 1, 6);A.setElement(3, 1, 6);cout << "矩阵A的第1列全设为6:" << endl;A.printMatrix();cout << "A的行列分别为:" << A.getLines()  << " " << A.getCols() << endl;cout << "B的行列分别为:" << B.getLines()  << " " << B.getCols() << endl;
}
//matrix.cpp
#include "Matrix.h"
#include<iostream>
using namespace std;Matrix::Matrix(int n) : lines(n) {                                     // 构造函数,构造一个n*n的矩阵cols = n;p = new float[lines*cols];
}Matrix::Matrix(int n,int m) : lines(n),cols(m) {                       // 构造函数,构造一个n*m的矩阵p = new float[lines*cols];
}Matrix::Matrix(const Matrix &X): lines(X.lines),cols (X.cols){         //复制构造函数的实现p = new float[lines*cols];
}Matrix::~Matrix() {                                                   //析构函数delete[]p;
}void Matrix::setMatrix(const float *pvalue) {        // 矩阵赋初值,用pvalue指向的内存块数据为矩阵赋值for (int i = 0; i < lines*cols; i++)*(p + i) = *(pvalue + i);
}void Matrix::printMatrix() const {                                      // 显示矩阵for (int i = 0; i < lines; i++) {for (int j = 0; j < cols; j++) {cout << p[i*cols + j] << " ";}cout << endl;}
}inline float Matrix::element(int i, int j) const {                 // 返回矩阵第i行第j列元素的值 return *(p + ((i - 1)*cols) + j - 1);
}void Matrix::setElement(int i, int j, int value) {               //设置矩阵第i行第j列元素值为value*(p + ((i - 1)*cols) + j - 1) = value;
}

 

期中考试:https://www.cnblogs.com/tensheep/p/9079345.html

实验总结与体会:

书上有关vector模板的介绍还是太少了

我找了一些概括了vector模板的用法的CSDN博客

实验是大概完成了,但迭代器方式的输出还有些疑问

这次实验最难写的就是最后一题了

写的过程中经常遇见无法解析的外部符号的错误

我查了些资料,也看了看其他同学的博客

发现只要把matrix.cpp里的函数放进matrix.h里就行了

虽然我并不知道原因...

 

 



转载于:https://www.cnblogs.com/tensheep/p/9073851.html

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

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

相关文章

关于JavaScript的编译原理

引擎&#xff1a;负责整个js程序的编译和执行过程编译器&#xff1a;负责语法分析和代码生成作用域&#xff1a;收集和维护一系列查询&#xff08;由所有声明的标识符组成&#xff09; 【例子&#xff1a;声明一个变量并赋值 var a value&#xff1b;】 Step1.编译器对该程序段…

safari检查元素_如何防止Safari检查是否使用Apple Pay

safari检查元素Apple Pay’s incorporation into macOS Sierra makes it really easy to pay using the service on your Mac with your iPhone or iPad. But that doesn’t mean just because you can, you will, or will want to use Apple Pay in the future. 通过将Apple P…

某乎有人问--微软会抛弃C#吗,有点担心?

在某乎有人问&#xff1a;微软会抛弃C#吗&#xff0c;有点担心&#xff1f;&#xff0c;类似这样的问题&#xff0c;一直都有很多人在问&#xff0c;今天我们就来聊聊这个问题。没必要担心微软倒闭了&#xff0c;C#都不会消失&#xff0c;其实.Net已经不属于微软的了。C#是属于…

icloud上传错误_如何修复HomeKit“地址未注册到iCloud”错误

icloud上传错误While Apple has made serious improvements to the HomeKit smarthome framework, there are still more than a few ghosts in the machine. Let’s look at how to banish the extremely frustrating “Address is not registered with iCloud” error to get…

(3)Python3笔记之变量与运算符

一、变量 1&#xff09;. 命名规则&#xff1a; 1. 变量名不能使用系统关键字或保留关键字 2. 变量区分大小写 3. 变量命名由字母&#xff0c;数字&#xff0c;下划线组成但不能以数字开头 4. 不需要声明变量类型 是 a 1 非 int a 1 5. 查看变量内存地址 id(a), id(b) 6…

WPF 实现视频会议与会人员动态布局

WPF 实现视频会议与会人员动态布局控件名&#xff1a;SixGridView作 者&#xff1a;WPFDevelopersOrg - 驚鏵原文链接[1]&#xff1a;https://github.com/WPFDevelopersOrg/WPFDevelopers框架使用.NET40&#xff1b;Visual Studio 2019;接着上一篇是基于Grid实现的视频查看感…

chromebook刷机_如何获取Android应用以查看Chromebook上的外部存储

chromebook刷机Android apps are a great way to expand the sometimes limited capabilities of Chromebooks, but they can be a problem if you store most of your data on an external medium—like an SD card, for example. Android应用程序是扩展Chromebook有时有限功能…

android 指纹添加_如何将手势添加到Android手机的指纹扫描仪

android 指纹添加So you have a shiny new Android phone, equipped with a security-friendly fingerprint scanner. Congratulations! But did you know that, while useful on its own, you can actually make the fingerprint scanner do more than just unlock your phone…

百度高管:问心无愧

1月23日下午消息&#xff0c;今天下午&#xff0c;百度召开百家号2019内容创作者盛典&#xff0c;百度副总裁沈抖出席并发布演讲。 就在前一天&#xff0c;一篇名为《搜索引擎百度已死》的文章刷屏&#xff0c;文中提到百度搜索有一半以上会指向百度自家产品&#xff0c;尤其百…

Vuex 学习笔记

Vuex 是什么&#xff1f; Vuex 是一个专为 Vue.js应用程序开发的状态管理模式。由于SPA应用的模块化&#xff0c;每个组件都有它各自的数据&#xff08;state&#xff09;、视图&#xff08;view&#xff09;和方法&#xff08;actions&#xff09;&#xff0c;当项目内容越来越…

xdf文档怎么转换为pdf_如何将PDF文件和图像转换为Google文档文档

xdf文档怎么转换为pdfYou probably know you can create and edit documents with Google Docs, but you can edit more than just .doc files. Google Drive can also convert any PDF, JPG, PNG, or GIF into a document with fully editable text. Here’s how. 您可能知道可…

在现代 Windows 上使用经典 Windows 2000、XP、Vista 任务栏

你好&#xff0c;这里是 Dotnet 工具箱&#xff0c;定期分享 Dotnet 有趣&#xff0c;实用的工具和组件&#xff0c;希望对您有用&#xff01;前言您第一次使用的 Windows 是哪个版本的&#xff1f;我最早使用的 Windows XP&#xff0c;然后再经过 XP、7、8/8.1 、Windows 10&a…

airdroid黑屏_如何使用AirDroid从PC控制Android设备

airdroid黑屏AirDroid for Android replaces your USB cable for connecting to your PC. Transfer files back and forth, send text messages, play music, view your photos, and manage applications using a web browser or a desktop client. 适用于Android的AirDroid取代…

分析java程序

2019独角兽企业重金招聘Python工程师标准>>> 最近公司的一个账单推送的服务&#xff0c;发现有延迟。我排查的时候发现&#xff0c;有一个程序日志不动了&#xff08;采用消息队列&#xff0c;部署了两台服务器来负载均衡&#xff09;。 网上说&#xff1a; jstack …

环境部署(九):linux下安装python+chrome+Xvfb

在基于selenium进行的UI自动化测试中&#xff0c;开发调试环境一般都是windows操作系统。完成后需要部署到专门的测试环境。 如要要部署到linux环境的服务器&#xff08;阿里云、腾讯云&#xff09;执行&#xff0c;那么测试脚本也需要对应的浏览器支持&#xff0c; 才能正常进…

地理围栏_什么是“地理围栏”?

地理围栏The term is popping up more frequently in news articles, appearing in product manuals, and highlighted as a feature in tons of mobile applications, but what exactly is geofencing? Read on as we explain what it is, why it’s appearing in more produ…

嵌套映射

1. 多对一嵌套查询映射使用案例 package com.zixue.dao;import com.zixue.annotation.MyBatisRepository; import com.zixue.entity.Emp;/*** 员工表的DAO组件* */ MyBatisRepository public interface EmpDao {void save(Emp emp);Emp findById(int id);Emp findById2(int id)…

gopro dataset_如何将GoPro安装到DSLR相机

gopro datasetIf you have a DSLR camera with a hot shoe, it’s easy to attach various flashes and other accessories right to your camera. But with a couple of cheap attachments on hand, you can mount your GoPro to your DSLR camera as well. 如果您的DSLR相机带…

jQuery已经过时了,还需要学吗?

说起jQuery&#xff0c;很多刚参加工作的程序员都没用过&#xff0c;甚至没听过。曾几何时jQuery可是秒杀一切Js库&#xff0c;大有一统江山的情况&#xff0c;可是在顶峰的时候&#xff0c;瞬间被Vue、React、Angela三大框架斩于马下。从百度指数&#xff0c;我们也看出在2015…