上一页 1 ··· 8 9 10 11 12 13 14 15 下一页
摘要: 写的不是很明白,后来又重新整理过了,在:http://www.cnblogs.com/iois/p/4986790.html函数重载(Function Overloading)C++允许同一范围(scope)(在同一个类中)内具有多个名称相同的函数。这些函数成为重载函数(overloaded fun... 阅读全文
posted @ 2014-11-09 15:45 clq.lib 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 翻译自msdn,如有不妥当的地方,欢迎指正。声明(Declaration):声明引入了一个名字以及其类型进入程序中,并没有定义一个相关的对象或者函数。然而,很多声明都作为定义使用。定义(definition):定义提供了 允许编译器为对象分配内存和生成函数代码的信息。生命周期(lifetime):一... 阅读全文
posted @ 2014-11-09 14:31 clq.lib 阅读(381) 评论(0) 推荐(0) 编辑
摘要: 比较简单的问题:#include#includeusing namespace std;int main(){ int lengthOfLastWord(const char *s); char a[20]; cin.getline(a,20); cout << length... 阅读全文
posted @ 2014-11-05 19:52 clq.lib 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 一个简单的问题:c++#includeusing namespace std;int searchInsert(int a[],int n,int target){ int i ,count; if (targeta[n-1]){ count= n; retu... 阅读全文
posted @ 2014-11-05 10:39 clq.lib 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 使用栈结构解决。#include #include using namespace std;class Solution {public: int trap(int A[], int n) { if (n water_stack; int begin=0; ... 阅读全文
posted @ 2014-10-29 10:47 clq.lib 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 递归实现(python):# Definition for a binary tree nodeclass TreeNode: def __init__(self, x): self.val = x self.left = None self... 阅读全文
posted @ 2014-10-27 15:50 clq.lib 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 典型的用栈(stack)结构解决问题的例子class Solution: def isPair(self,s1,s2): if (s1=='(' and s2==')')or (s2=='(' and s1==')'): return True ... 阅读全文
posted @ 2014-10-27 13:50 clq.lib 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 我的思路:先读取每一个单词,存放到容器中;读取完毕后,将容器中的单词倒序写入输出中。#include#include#includeusing namespace std;void f(string &s){ vector vs; string temp=""; int i=0;... 阅读全文
posted @ 2014-10-24 10:22 clq.lib 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 贪心:尽量将gas[i]-cost[i]>0的放在前面,gas[i]-cost[i]=sum(cost[i]),不满足这个条件就不能全程走一遍;起点 i 满足的 必要 条件 是:额外剩下的gas(additional_gas)要大于等于0,即 gas[i]-cost[i]>=0;另外需满足: 找出某... 阅读全文
posted @ 2014-10-22 10:40 clq.lib 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 快速比较两个字符串是否“相等”两个字符串相等:字符串中的每个字符出现的次数都相等。“abbcc”与“cbabc”相等,因为两个字符串中‘a’都出现了1次,‘b’出现2次,‘c’出现2次。其中一种方法是使用散列表,散列表的经典应用是字典,以单词为关键字,其解释为值; 对于本文的问题, 将字符作为关键字... 阅读全文
posted @ 2014-10-17 21:27 clq.lib 阅读(803) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 下一页