- 博客(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关注的人
RSS订阅