摘要: 教科书中失踪的vector 很奇怪的一件事情,在当时学习C++的时候,老师并没有讲授容器的内容,当时参考的谭浩强老师的红皮C++也没有这个内容,不知为何。后来再学C++,发现容器是一个很重要的概念,在C++primer中,大量使用了vector容器,在很多在线编程网站的题目中,也使用了vector< 阅读全文
posted @ 2016-04-26 20:06 marcusxu 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: 问题: Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. Example:Given nums = [-2, 0, 3, -5, 2, -1] sumRange(0, 2) -> 1 sumRange(2, 5) -> -1 sumRang... 阅读全文
posted @ 2016-04-26 18:57 marcusxu 阅读(460) 评论(0) 推荐(0) 编辑