自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

mouze2000的专栏

Otter's some place

  • 博客(16)
  • 资源 (9)
  • 收藏
  • 关注

转载 找到一本不错的Linux电子书,附《Linux就该这么学》章节目录。

此书是由全国多名红帽架构师(RHCA)基于RHEL7系统共同编写的高质量Linux技术自学书籍,各章节知识点从实践出发且具有较强连贯性,极其适合Linux初学者或用作Linux相关辅助教材,专注于Linux系统与红帽认证。目前是国内最值得去读的Linux教材,也是最有价值的Linux实验手册,章节包括有:第0章 让我们谈谈学习方法和红帽系统。 第1章 部署虚拟环境安装linux系统。第

2016-10-11 10:28:27 7886

原创 boost example

#include #include #include #include int main(){ using namespace boost::lambda; typedef std::istream_iterator in; std::for_each( in(std::cin), in(), std::cout << (_1 * 3) << " " );}

2015-03-16 22:21:30 430

原创 myadd

libMyAdd.hlibMyAdd.dlllibMyAdd.lib#include #include #include #include "mclmcr.h"#include "matrix.h"#include "mclcppclass.h"#include "libMyAdd.h"using namespace std;int main(){ dou

2015-03-16 22:20:36 1051

原创 ma2012

#include #include #include #include "mclmcr.h"#include "matrix.h"#include "mclcppclass.h"#include "libMyAdd.h"using namespace std;int main(){ double a = 6; double b = 9; double c; // ini

2015-03-16 22:19:49 416

原创 countif

/*#include "stdafx.h"*/#include "vector"#include "string"#include "algorithm"#include "functional"#include "iostream"using namespace std;#define STANDARHEIGHT 165#define STUDENTNUM 5class

2015-03-16 22:18:51 275

原创 VectorTest

#include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std;void main(){ //////////////////

2015-03-16 22:17:20 486

原创 sorttest

#include#include#include using namespace std;class A{public: int a,b; A(int t1,int t2){a=t1,b=t2;} bool operator < (const A& t2){ return this->a<t2.a; }};bool lessB (const A& t1,co

2015-03-16 22:16:46 458

原创 TypedefTypenameTest2

#include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std;templateclass MapTest{public: t

2015-03-16 21:57:28 270

原创 testListEmptyEnd

#include #include using namespace std;void main(){ list li; li.clear(); list::iterator it; for (it = li.begin(); it != li.end(); it++) { if (++it == li.end()) { cout << "here" <<en

2015-03-16 21:54:36 226

原创 testListRemoveif

#include #include using namespace std;class notBigi{private:int m_i;list ll;public:notBigi(int i):m_i(i){} bool operator() (int j) { if ( j == m_i) {return true; }elsereturn false; }};void main(){list

2015-03-16 21:52:05 274

原创 生成 密码 C++

#include #include #include #include using namespace std;void main(){ unsigned width;//密码位数 unsigned wdtStart, wdtEnd; //输出密码位数区间 list element,pswd, temp, pwdAll; //存放密码字符的容器 list::iterat

2015-03-15 15:33:08 538

原创 [搜集]定位文件出错位置行号、日期、文件名、函数

// ************************************************// // Global.h // define functions// // ************************************************#include #include #include #include #in

2013-10-26 20:08:51 505 1

原创 text2.cpp

#includeusing namespace std;struct date{ int year,month,day;};struct spzl{ int num; char pm[10]; float dj; char cpsm[20]; date scrq;};void print(spzl sp[5])

2012-06-04 15:01:38 255

原创 text1.cpp

#includeint main(){ int x=1,z=1,y=1,k,o; cout<<x<<" "<<z<<" "<<y<<endl; // k=x++||++y&&++z; //cout<<x<<" "<<z<<" "<<y<<" "<<k<<endl; o=(x++)||(++y)&&(++z); cout<<x<<" "<<z<<" "<<y

2012-06-04 15:00:55 300

原创 123.cpp

#include using namespace std;class Time{ public: Time(){minute=0;sec=0;} Time(int m,int s):minute(m),sec(s){} Time operator++(); Time operator++(int); void displa

2012-06-04 14:59:42 281

原创 C语言通用范例开发金典说明

C语言通用范例开发金典说明总共有6个rar压缩包,需要全部下载下来一起解压才可以。并不是每个part是单独的pdf文件。part 1http://download.csdn.net/detail/mouze2000/4289313part 2http://download.csdn.net/detail/mouze2000/4289362part 3http://d

2012-05-10 10:45:45 3111

《数据结构教程》电子版 第五章扫描版

数据结构书扫描版,仅第五章内容,格式PDF。 数据结构书扫描版,仅第五章内容,格式PDF。

2018-10-03

C语言通用范例开发金典.part6

Book, C语言通用范例开发金典, part 06 , pdf format. Total 6 parts. All is 273Mb.

2012-05-09

C语言通用范例开发金典.part5

Book, C语言通用范例开发金典, part 05 , pdf format. Total 6 parts. All is 273Mb.

2012-05-09

C语言通用范例开发金典.part4

C语言通用范例开发金典.part4

2012-05-09

C语言通用范例开发金典.part3

Book, C语言通用范例开发金典, part 03 , pdf format. Total 6 parts. All is 273Mb.

2012-05-09

C语言通用范例开发金典.part2.

Book, C语言通用范例开发金典, part 02 , pdf format. Total 6 parts. All is 273Mb.

2012-05-09

C语言通用范例开发金典

C语言通用范例开发金典, part 01 , pdf format. Total 6 parts. All is 273Mb.

2012-05-09

MATLAB 程式設計入門篇

MATLAB 程式設計入門篇 作者:陳烱勳 mikemouse@is.cs.nthu.edu.tw mikemousenana@gmail.com 类型:PPT 介绍MATLAB程序设计的入门知识的PPT。

2009-05-25

第5章 计算机网络应用开发 与相关技术

本章主要讲述了网络上的应用开发和相关技术,包括网络管理、网络安全、代理服务器和网络数据库接口,以及远程教育、电子商务、办公自动化、网络的法律法规等。

2009-05-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除