自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 问答 (3)
  • 收藏
  • 关注

原创 postfix2infix

#include <iostream> #include <stack> #include <string> #include <sstream> using namespace std;int main() { stack<string> s; // use a stack to store the current answer string equation; // the wh

2016-03-21 10:44:35 247

原创 infix2postfix

#include <iostream> #include <stack> using namespace std;int main() { stack<char> s; // use a stack to store the character of the equation string equation; // store the whole equation getli

2016-03-21 10:35:49 352

原创 文章标题

#include <iostream> #include <list> #include <fstream> #include <vector> #include <string> using namespace std; class Editor { public: //后置条件:编辑器为空。 Editor(); /* 如果line为合法命令,则

2016-03-19 12:34:00 116

转载 test2

#include #include #include #include #include using namespace std; class Editor { public: //后置条件:编辑器为空。 Editor(); /* 如果line为合法命令,则该命令被执行,执行结果被返回。若line是插入的文本行,则该文本行被插入并返回结果;否则,返回非法命令错误

2016-03-19 12:27:46 133

原创 欢迎使用CSDN-markdown编辑器

int m = 0; for (int j = 6; (line[j] >= '0' && line[j] <= '9'); j++) { m = 10 * m; m += (line[j] - '0'); }

2016-03-19 12:25:49 216

空空如也

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

TA关注的人

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