算法
文章平均质量分 58
「已注销」
这个作者很懒,什么都没留下…
展开
-
摘抄些微软实现的源码
自己实现的感觉不怎么好,就在vc的安装文件中找到了这些微软的源码。从细节上就能感受到大神的魅力。int strcmp (const char * src,const char * dst){ int ret = 0 ; while( ! (ret = *(unsigned char *)src - *(unsigned char *)dst) &&原创 2014-03-06 22:24:39 · 890 阅读 · 1 评论 -
从n个数中找出前m个最大的
我的思路:原创 2014-09-21 21:15:43 · 992 阅读 · 0 评论 -
四则运算的实现
闲来无事,写个四则运算的计算式【包括+,-,*,/,没有括号】;代码如下:#include #include #include using namespace std;class Calc{public: int judge (const string &str) { if (str.find ('=') == string::npos) { cout<<"i原创 2014-09-21 22:44:28 · 998 阅读 · 0 评论