摘要: 输入。 ·gets(str) →char 从光标读取到换行符,包括空格。 不过我用Xcode跑编译会出现迷之错误:warning: this program uses gets(), which is unsafe. ·getline(cin,str) →string 从光标读取到换行符,包括空格。 阅读全文
posted @ 2019-04-06 21:49 tyqEmptySet 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 二叉树 先序遍历 根→左→右 (1 2 4 7 5 3 6 8 9) 中序遍历 左→根→右 (7 4 2 5 1 3 8 6 9) 后序遍历 左→右→根 (7 4 5 2 8 9 6 3 1) 阅读全文
posted @ 2019-04-06 02:10 tyqEmptySet 阅读(160) 评论(0) 推荐(0) 编辑
我与春风皆过客,你携秋水揽星河。