摘要: #define _CRT_SECURE_NO_WARNINGS #include #include #include using namespace std; int main(int argc, char * argv[]) { //string str2 = "xiaoliang"; //string str3("xiaohei", 5); //... 阅读全文
posted @ 2018-09-19 22:40 唯一诺 阅读(197) 评论(0) 推荐(0)
摘要: #define _CRT_SECURE_NO_WARNINGS #include #include using namespace std; int main(int argc, char * argv[]) { list lst; lst.push_back(10); //从链表尾部添加 lst.push_front(20); //从链表头部添加 ... 阅读全文
posted @ 2018-09-19 21:55 唯一诺 阅读(193) 评论(0) 推荐(0)