c++
文章平均质量分 80
zyw0929
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c++中输出输入运算符的重载
<<和>>运算符重载,均为friend友元函数。//标题竟然不能有 '<' 和 '>' 符号class Vehicle { public: int i; friend ostream& operator<<(ostream &out, const Vehicle &vehicle);//重载<<运算符 }; o...原创 2018-04-11 23:41:02 · 1089 阅读 · 3 评论 -
c++上机(第一次)
1. Read the codes carefully on page 230 and page 248 of the book, or on page 247 and page 266 of the e-book, then answer the questions as below: 1.1 Describe the main data structure of Stack; 1.2 De...原创 2018-04-19 23:57:31 · 881 阅读 · 0 评论 -
软件工程团队项目——subway
目录 零、分工 一、GitHub地址 二、PSP表格 三、控制台程序解题思路 1. 建模思路和文本信息 2. Dijkstra算法——/b功能 3. /c功能实现 4. /a功能实现 5. 换乘优化 6./z测试功能实现 四、控制台程序实现 1. Dijkstra算法——/b功能代码 2. /a功能代码 3./z测试功能代码 五、控制台程序性能分析 六、...原创 2019-01-12 14:03:30 · 844 阅读 · 0 评论
分享