摘要:
删除等于n的数,并返回剩余元素个数 阅读全文
摘要:
判断两棵二叉树是否相等 阅读全文
摘要:
合并两个有序的list 把排序好的nums2插入nums1中,假设nums1这个vector的空间永远是够的 思路:倒序!! 阅读全文
摘要:
因为要考虑超时问题,所以虽然简单的for循环也可以做,但是要用map等内部红黑树实现的容器。 Given an array of integers, find out whether there are two distinct indices i and j in the array such t 阅读全文