C++沉思录第九章的练习

先把代码贴着,明天再补充总结!

#ifndef PICTURE_H
#define PICTURE_H
#include<iostream>
using namespace std;

class Picture
{
private:
	int height, width;
	char * data;
	char & position(int row, int col)
	{
		return data[row*width + col];
	}
	char position(int row, int col)const
	{
		return data[row*width + col];
	}
	static int max(int m, int n){ return m > n ? m : n; }
	void init(int h, int w);
	void copypic(int n, int m, const Picture & p);
	void clear(int a, int b, int c, int d);
public:
	Picture() :height(0), width(0), data(0){}
	Picture(const char * const *, int);
	Picture(const Picture &);
	~Picture(){ delete[] data; }
	Picture & operator =(const Picture &);

	friend ostream & operator <<(ostream & os, const Picture & p);
	friend Picture frame(const Picture & p);
	friend Picture operator |(const Picture & p, const Picture & q);//横向连接
	friend Picture operator &(const Picture & p, const Picture & q);//纵向连接
};
void Picture::init(int h, int w)
{
	height = h;
	width = w;
	data = new char[w*h];
}
Picture::Picture(const char * const * arr, int m)
{
	int w = 0;
	int i;
	for (i = 0; i < m; ++i)
		w = Picture::max(m, strlen(arr[i]));
	init(m, w);
	for (i = 0; i < m; ++i)
	{
		const char * c = arr[i];
		int len = strlen(arr[i]);
		int j = 0;
		while (j < len)
		{
			position(i, j) = c[j]; ++j;
		}
		while (j < width)
		{
			position(i, j) = ' ';
			++j;
		}
	}
}
void Picture::copypic(int n, int m, const Picture & p)
{
	for (int i = 0; i < p.height; ++i)
	{
		for (int j = 0; j < p.width; ++j)
			position(n + i, m + j) = p.position(i, j);
	}
}
Picture::Picture(const Picture & p)
:height(p.height), width(p.width), data(new char[p.height*p.width])
{
	copypic(0, 0, p);
}
void Picture::clear(int a, int b, int c, int d)
{
	for (int i = a; i < c;++i)
		for (int j = b; j < d; ++j)
			position(i, j) = ' ';
}
Picture & Picture::operator=(const Picture & p)
{
	if (this != &p)
	{
		delete[]data;
		init(p.height, p.width);
		copypic(0, 0, p);
	}
	return *this;
}
ostream & operator <<(ostream & os, const Picture & p)
{
	for (int i = 0; i < p.height; ++i)
	{
		for (int j = 0; j < p.width; ++j)
			os << p.position(i, j);
		os << endl;
	}
	return os;
}
Picture frame(const Picture & p)
{
	Picture r;
	r.init(p.height + 2, p.width + 2);
	for (int i = 1; i <= r.width-1 ; ++i)
	{
		r.position(0,i) = '-';
		r.position(r.height - 1,i ) = '-';
<pre>	}
	for (int j = 1; j <=r.height-1; ++j)
	{
		r.position(j,0) = '|';
		r.position(j,r.width-1) = '|';
	}
	r.position(0, 0) = '+';
	r.position(0, r.width-1) = '+';
	r.position(r.height - 1, 0) = '+';
	r.position(r.height - 1, r.width - 1) = '+';
	r.copypic(1, 1, p);
	return r;
}
Picture operator |(const Picture & p, const Picture & q)//横向连接
{
	Picture r;
	r.init(Picture::max(p.height, q.height), p.width + q.width);
	r.clear(p.height, 0, r.height, p.width);

r.clear(q.height,p.width, r.height, r.width);r.copypic(0, 0, p);r.copypic(0, p.width, q);return r;}Picture operator &(const Picture & p, const Picture & q)//纵向连接{Picture r;r.init(p.height+ q.height, Picture::max(p.width, q.width));r.clear(0,
p.width, p.height, r.width);r.clear(p.height, q.width, r.height, r.width);r.copypic(0, 0, p);r.copypic(p.height,0 ,q);return r;}#endif


#include"picture.h"

int main()
{
	char * init[] = { "Summer", "love", "Xieweizhong" };
	Picture p(init,3);
	cout << p << endl;
	cout << frame((p | frame(p)) | (p | frame(p))) << endl;
	cout << frame((p & frame(p)) | (p | frame(p))) << endl;
	cout << frame((p | frame(p)) | (p & frame(p))) << endl;
	cout << frame((p & frame(p)) | (p & frame(p))) << endl;
	cout << frame((p | frame(p)) & (p | frame(p))) << endl;
	cout << frame((p & frame(p)) & (p | frame(p))) << endl;
	cout << frame((p | frame(p)) & (p & frame(p))) << endl;
	cout << frame((p & frame(p)) & (p & frame(p))) << endl;
		return 0;
}
时间: 2024-10-12 04:50:53

C++沉思录第九章的练习的相关文章

PHP沉思录-第六篇-Drupal的性能问题-左轻侯-《程序员》2008年11月号

创建时间:2008-11-09 01:12:51   最后修改时间:2008-11-09 01:12:51 本文发表在<程序员>杂志2008年第11期 PHP沉思录之六:Drupal的性能问题 左轻侯 Drupal是一个基于PHP的开源CMS系统,也是我认为技术上实现得最好的一个PHP应用.Drupal的架构非常优秀,通过微内核+plugin的方式,实现了极佳的扩展性,从而使Drupal远远超出一般的CMS这一范畴.从这个意义上来说,把Drupal称为Web OS似乎更加合适一些.关于Drup

《C++沉思录》:类设计者的核查表——有关class的11问

本文的11个问题提取自<C++沉思录>第四章.所有问题的说明均为自己补充. 1 你的类需要一个构造函数吗? --正确的定义构造函数,把握好构造函数的职能范围 有些类太简单,它们的结构就是它们的接口,所以不需要构造函数. class print{ void print1(){cout<<"1"<<endl;} void print2(){cout<<"2"<<endl;} void print3(){cout

C++沉思录之二——虚函数使用的时机

虚函数使用的时机 为什么虚函数不总是适用? 1. 虚函数有事会带来很大的消耗: 2. 虚函数不总是提供所需的行为: 3. 当我们不考虑继承当前类时,不必使用虚函数. 必须使用虚函数的情况: 1. 当你想删除一个表面上指向基类对象,实际却是指向派生类对象的指针,就需要虚析构函数. C++沉思录之二--虚函数使用的时机,布布扣,bubuko.com

javascript高级程序设计 第九章-- 客户端检测

javascript高级程序设计 第九章-- 客户端检测 客户端检测是javascript开发中最具争议的一个话题,由于浏览器间存在差别,通常需要根据不同浏览器的能力分别编写不同的代码.有下列常使用的客户端检测方法:能力检测:在编写代码之前先检测特定浏览器的能力.例如,脚本在调用某个函数之前,可能要先检测该函数是否存在.这种检测方法将开发人员从考虑具体的浏览器类型和版本中解放出来,让他们把注意力集中到相应的能力是否存在上.能力检测无法精确地检测特定的浏览器和版本.怪癖检测:怪癖实际上是浏览器中存

zabbix专题:第九章 自定义key(案例:监控内存,监控nginx状态)

第九章 自定义key 对Linux有兴趣的朋友加入QQ群:476794643 在线交流 本文防盗链:http://zhang789.blog.51cto.com 为什么要自定义KEY 有时候我们想让被监控端执行一个zabbix没有预定义的检测,zabbix的用户自定义参数功能提供了这个方法.我们可以在客户端配置文件zabbix_angentd.conf里面配置UserParameter. 语法如下: UserParameter=key,command 用户自定义参数包含一个key和一个命令,ke

读书笔记第九章

第九章HAL是建立在linux驱动之上的一套程序库.这套程序库并不属于linux内核,而是属于linux内核层之上的应用层.可以用来保护不想公开源代码的作者.HAL架构比较简单,其基本原理就是在安卓系统中使用程序库调用位于内核空间的linux驱动,然后安卓应用程序可以通过NDK程序访问HAL中的程序库,或直接在安卓应用程序中访问HAL中的程序库.编写一款支持HAL的linux驱动程序的步骤:1.编写linux驱动,linux驱动的代码要尽量简介,尽可能将业务逻辑放到HAL library中.2.

个性化的亲切——《沉思录》引发的感悟

记得初中那阵子,曾经追过明星,甚至美的标准也变成了他——恨不得所有的明星都是长的和他一样,唱的和他一样.除了他的歌,我几乎欣赏不了其他人的歌. 还记得差不多在那个年纪,曾经幻想过世界“大统”——我认为“大统”是达到“大同”,消弭纷争的有效方式.惭愧,后来知道希特勒也是这么想的.此乃后话,不提. 也几乎是那个时候,我不愿再做“出头鸟”,我相信“人多力量大”,我总愿意融在身边的“圈子”,不想显得自己不合群. 个性化,在我们的应试教育体制中从来都没有得到特别的提倡,如果没有良师益友的及时提点,一定会让

第九章 两种模式的比较

#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <assert.h> #include <stdio.h> #include <unistd.h> #include <errno.h> #include <string.h> #include

第九章 用多线程来读取epoll模型下的客户端数据

#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <assert.h> #include <stdio.h> #include <unistd.h> #include <errno.h> #include <string.h> #include