摘要: #include#define ARR_SIZE(a)(sizeof((a)) / sizeof((a[0])))int a[] = {1, 23, 32, 0, 2, 5, 23};void insert_sort(int *a, int n) { int i, j,temp; for (i... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(123) 评论(0) 推荐(0) 编辑
摘要: int main (int argc, char *argv[]){ string file= argv[1] ; cout> word)out << word << " "; ifstream in(file); if(!in.is_open ()) {cout << "Cannot ope... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 一个很重要的想法来自http://zhex.iteye.com/blog/492722提到的:3. 两个三位数的乘积肯定是一个六位数, 而这个六位回文数数P我们可以用xyzzyx的形式表示,那我们可以得到下面的公式:P = 100000x + 10000y + 1000z + 100z + 1... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(147) 评论(0) 推荐(0) 编辑
摘要: int main(int argc, char **argv){ int i; cout>i; autoif_equal_zero = [&]()-> bool{if (i == 0)return true;elsewhile (i > 0)--i;return false; }; cout ... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(153) 评论(0) 推荐(0) 编辑
摘要: #include >#include >#include >#include >using namespace std;string make_plural(size_t ctr, const string &word, const string&ending){ return (ct... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(158) 评论(0) 推荐(0) 编辑
摘要: include include include int main(int argc, char **argv){int a = 0, b = 0, c = 0;string str;getline(cin, str);for(auto it = str.begin(); it != str.e... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(286) 评论(0) 推荐(0) 编辑
摘要: class circle{int a; // 普通变量,不能在类中初始化static int b; // 静态变量,不能在类中初始化static const int c=2; // 静态常量,可以在类中初始化static const double PI=3.1416;//error C2864... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 原文地址:博客中尖括号不显示的问题作者:木子超-同学 今天突然发现以前博文中粘贴的代码都有了问题,C++代码中头文件“#include……”后面的的部分都不见了,单单显示为“#include”,颇感纠结,百度了一下才发现原来是HTML和XML转义字符的问题。大概意思就是说尖括号为HTML和XM... 阅读全文
posted @ 2014-07-18 21:07 wu_overflow 阅读(307) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;//以下任意一种定义方式均合法//using funcp = int(*) (int, int);//typedef int(*funcp) (int, int);//若已知目标类型为Func, 则可以//int Fu... 阅读全文
posted @ 2014-07-18 21:06 wu_overflow 阅读(395) 评论(0) 推荐(0) 编辑
摘要: int array[10];int (*func(int i))[10];using arrInt = int[10];arrInt *func2(int i);typedef int arrayInt[10];arrayInt *func3(int i);auto func4 (int i)... 阅读全文
posted @ 2014-07-18 21:06 wu_overflow 阅读(184) 评论(0) 推荐(0) 编辑