摘要: C++ Vector VS Python list 构造 构造一个空列表 vector<int> cpp; python = [] 构造一个长度为6,初始值为0的列表 vector<int> cpp(6, 0); python = [0 for _ in range(6)] 切片 vector<in 阅读全文
posted @ 2021-01-28 18:38 McConor 阅读(361) 评论(0) 推荐(0)
摘要: It's your life 这篇文章其实提到了两个点:生活是自己的,不是别人的;任何时候,都有选择。 I'm not in this world to live up to your expectations and you're not in this world to live up to m 阅读全文
posted @ 2021-01-28 13:13 McConor 阅读(142) 评论(0) 推荐(0)