C语言
方头狮小姐
我不要岁月静好
展开
-
sort排序
#include #include//因为我们将要在程序中使用sort库函数,在头文件方面包含了algorithm头文件,并使用using namespacestd;语句声明了我们将会使用标准命名空间,(sort被定义在其中) using namespace std; bool cmp(int x,int y)//定义排序规则 { return x>y; } int main()转载 2014-09-08 21:01:48 · 310 阅读 · 0 评论 -
文件替换
#include #include using namespace std; int main() { deque d; printf("input:"); int n; while(scanf("%d",&n)!=EOF) { if(d.size()==0)//里面没有元素,直接插入 { d.push_front(n); printf("output:%d\n",d转载 2014-09-08 21:17:25 · 361 阅读 · 0 评论 -
文件最近替换算法
#include #include using namespace std; void main(void) { deque d; cout int n; while(cin>>n) { if(d.size()==0)//里面没有元素,直接插入 { d.push_front(n); cout } else if(d.size()==1)//里面已经有了一个元素转载 2014-09-08 21:18:58 · 327 阅读 · 0 评论 -
文件加法操作
#include int main(void) { freopen("A.txt", "r", stdin ); freopen("B.txt", "w", stdout ); int a, b; scanf("%d%d", &a, &b); printf("%d\n", a + b); return 0; }转载 2014-09-08 22:07:15 · 409 阅读 · 0 评论