自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 文章标题

using namespace std; int a; class Student { private: int m_iNo; string m_sName; int m_iGrad;public: Student(int no, string name,int grad) { m_iNo = no; m_sName = name

2017-05-05 10:25:00 168

原创 括号识别

class CEpress { private: string m_sString; public: CEpress(string sstring) { m_sString = sstring; } bool isValid() { char ch=0; bool pos =true; s

2017-04-29 09:37:23 425

原创 多项式加减

using namespace std; class Term { private: int m_iCoef; int m_iExp; public: Term(int coef, int exp) { m_iCoef = coef; m_iExp = exp; } int Getcof() {

2017-04-23 16:06:56 430

原创 Deque实现队列

template<class T> class Dque { private: deque<T>m_dQue; public: void addfront( T& d) { m_dQue.push_front(d); } void addback(const T& d) { m_dQue.push_back(d);

2017-04-10 09:52:57 387

原创 欢迎使用优快云-markdown编辑器

#include<iostream> #include<string> #include<iterator> #include<fstream> #include<sstream> #include<vector> #include<algorithm> #include<functional> #include<conio.h> using namespace std; class Book {

2017-04-09 16:17:52 205

原创 stl vector介绍

class Student { private: string m_sStrNo; string m_sName; string m_sSex; string m_sDate; public: Student(string strno, string name, string sex, string date) { m_sStrNo = strno; m_sName = na

2017-04-09 14:47:22 219

空空如也

空空如也

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

TA关注的人

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