c语言常见上机题

快速排序

快排很容易进入无限递归,写的时候要注意边界问题

#include<iostream>using namespace std;int n;const int N = 1e6 +10;void qsort(int a[],int l,int r){if(l>=r) return;int x=a[l],i=l-1,j=r+1;while(i<j){do i++;while(a[i]<x);do j--;while(a[j]>x);if(i<j) swap(a[i],a[j]);}qsort(a,l,j);qsort(a,j+1,r);
}int main(){scanf("%d",&n);int a[n];for(int i=0;i<n;i++){scanf("%d",&a[i]);}qsort(a,0,n-1);for(int i=0;i<n;i++){printf("%d ",a[i]);}return 0;}

求前n项分数和

#include<stdio.h>int main(){int n=10;double sum = 0.0;for (int i = 1; i <= n;i++){sum += 1.0 / i;}printf("f(%d)=%f\n", n, sum);return 0;
}
//变式
#include<stdio.h>int main(){int n=10000;double sum = 0.0;int sign = 1;for (int i = 1; i <= n;i++){sum += sign*1.0 / i;sign = -sign;}printf("f(%d)=%f\n", n, sum);return 0;
}

整数分解

#include<stdio.h>int main(){int x;scanf("%d", &x);x = 12345;do{int d = x % 10;printf("%d", d);if(x>=10){printf(" ");//在非最后一轮输出空格}x /= 10;} while (x > 0);return 0;
}

整数逆序

#include<stdio.h>int main(){int x;scanf("%d", &x);int t = 0;do{int d = x % 10;t = t * 10 + d;x /= 10;} while (x > 0);printf("t=%d\n", t);//   do{
//      int d = x % 10;
//      printf("%d", d);
//      if(x>=10){
//         printf(" ");//在非最后一轮输出空格
//      }
//      x /= 10;
//   } while (x > 0);return 0;
}

求最大公约数

#include<stdio.h>int main(){int a, b;int t;a = 12, b = 6;while (b!=0){t = a % b;a = b;b = t;printf("%d", a);}return 0;
}

全排列问题

#include <iostream>
#include <bits/stdc++.h>
using namespace std;
//记录路径
int path[100];
// 记录每一位是否访问
int status[100];
int n;
/*
u是递归层数,a[]是存放待排列数字的数组
*/
void dfs(int u, int a[])
{if (u == n){for (int i = 0; i < n; i++){//输出路径printf("%d ", path[i]);}puts(""); // 每个排列之间的换行return;}for (int i = 0; i < n; i++){if (!status[i]){path[u] = a[i];status[i] = true;dfs(u + 1, a);status[i] = false;//恢复现场,回溯}}}int main()
{//n是待排列数字的个数scanf("%d", &n);int a[n]; // 记录待排列数字// 输入待排列数字for (int i = 0; i < n; i++){cin >> a[i];}dfs(0, a);return 0;
}
//没有给定数组长度
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
//记录路径
int path[100];
// 记录每一位是否访问
int status[100];
int n;
/*
u是递归层数,a[]是存放待排列数字的数组
*/
void dfs(int u, int a[])
{if (u == n){for (int i = 0; i < n; i++){//输出路径printf("%d ", path[i]);}puts(""); // 每个排列之间的换行return;}for (int i = 0; i < n; i++){if (!status[i]){path[u] = a[i];status[i] = true;dfs(u + 1, a);status[i] = false;//恢复现场,回溯}}}int main()
{//n是待排列数字的个数// scanf("%d", &n);int a[100]; // 记录待排列数字// 输入待排列数字int x;n=0;while (cin>>x,x){a[n++] = x;if(cin.get()=='\n') break;//回车结束循环}dfs(0, a);return 0;
}

选择排序

#include<iostream>using namespace std;const int N = 1010;
int a[N];
int n;void selectSort(){for (int i = 0; i < n;i++){int pos = i;for (int j = i + 1; j < n;j++){if(a[j]<a[pos])pos = j;}swap(a[i], a[pos]);}
}int main()
{cin >> n;for (int i = 0; i < n;i++){cin >> a[i];}selectSort();for (int i = 0; i < n;i++){cout << a[i] << " ";}return 0;
}

蜜蜂路线

#include <cstdio>
int main(){long long f[105];f[1]=1;f[2]=2;for(int i=3;i<=100;i++) f[i]=f[i-1]+f[i-2];int n;int a,b;scanf("%d%d",&a,&b);printf("%lld\n",f[b-a]);return 0;
}

读写文件

#include<stdio.h>
#include<stdlib.h>int cmp(const void *a, const void *b)
{const int *pa = a, *pb = b;return *pb - *pa; // 逆序比较
}
int main(){const char *filename = "original.txt";//打开文件读取数据//打开文件FILE *fin;if((fin=fopen(filename,"r"))==NULL){perror(filename);return 1;//读取文件失败}//读取数据int a[1024];int n = 0;while ((fscanf(fin,"%d",&a[n])==1)){n++;}//关闭文件fclose(fin);//数据排序qsort(a, n, sizeof(int), cmp);//写入文件//打开文件FILE *fout;if ((fout = fopen(filename, "w")) == NULL){perror(filename);return 2; // 写文件失败}//写入数据for (int i = 0; i < n; i++)fprintf(fout, "%d\n", a[i]);//关闭文件fclose(fout);return 0;
}

水仙花数

#include<iostream>
#include<cstring>
#include<algorithm>using namespace std;bool check(int x){int sum = 0, y = x;//用y暂存下x的取值while (x){int t = x % 10;//取个位x /= 10;//去除末位sum += t * t * t;}return sum == y;
}
int main(){int m, n;while (cin>>m>>n,m)//只要有m在输入,循环就会一直执行{int cnt = 0;for (int i = m;i<=n;i++){if(check(i)){cout << i << " ";cnt++;}}if (!cnt){cout << "no";}cout << endl;}return 0;
}

逆置链栈

#include<stdio.h>
#include<stdlib.h>typedef char ElementType;
typedef struct SNode *Stack;
struct SNode
{ElementType Data;struct SNode *Next;
};
//构建一个堆栈的头结点,返回指针
Stack Create()
{Stack s;s = (Stack)malloc(sizeof(struct SNode));s->Next = NULL;return s;
}
int IsEmpty(Stack s)
{return (s->Next == NULL);
}
void Push(ElementType item,Stack s)
{struct SNode *temp;temp = (Stack)malloc(sizeof(struct SNode));temp->Data = item;temp->Next = s->Next;s->Next = temp;
}
//删除并返回堆栈s的栈顶元素
ElementType Pop(Stack s)
{struct SNode *temp;ElementType topElem;if(IsEmpty(s)){printf("堆栈空");return NULL;}else{temp = s->Next;s->Next = temp->Next;topElem = temp->Data;free(temp);return topElem;}
}
void PrintStack(Stack s){if(s==NULL){printf("栈不存在\n");return;}//s = s->Next;while (!IsEmpty(s)){printf("%c", Pop(s));}printf("\n");
}
int main(){Stack s;s=Create();char c;int i=0; for(i=0;i<10;i++){scanf("%c",&c);Push(c,s);}PrintStack(s);return 0;
}

判断完数

#include<stdio.h>int main()
{int num, sum;for (num = 1; num <= 1000;num++){sum = 0;for (int i = 1; i <= num;i++){if(num%i==0){sum += i;}}if(sum==num){printf("%d",num);}}return 0;
}

冒泡排序

#include<iostream>using namespace std;int main(){int n;cin >> n;int a[n];for (int i = 0; i < n;i++){cin >> a[i];}for (int i = 0; i < n - 1;i++){for (int j = 0; j < n - i - 1; j++){if(a[j]>a[j+1])swap(a[j], a[j + 1]);}}for (int i = 0; i < n;i++){cout << a[i] << " ";}return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/742962.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MFC中手动create创建的窗口,如何销毁释放?

在MFC中&#xff0c;当你手动创建一个窗口&#xff08;例如使用Create函数而不是通过对话框模板创建&#xff09;&#xff0c;你需要确保在适当的时候正确地销毁和释放该窗口。这通常涉及删除窗口对象并调用其析构函数&#xff0c;这将负责清理与窗口相关联的资源。 以下是一些…

【Java语言】遍历List元素时删除集合中的元素

目录 前言 实现方式 1.普通实现 1.1 使用【for循环】 方式 1.2 使用【迭代器】方式 2.jdk1.8新增功能实现 2.1 使用【lambda表达式】方式 2.2 使用【stream流】方式 注意事项 1. 使用【for循环】 方式 2. 不能使用增强for遍历修改元素 总结 前言 分享几种从List中移…

基于 K8s 容器集群的容灾架构与方案

作者&#xff1a;庄宇 在设计系统架构时&#xff0c;我们必须假设任何组件和任何基础设施可能会在任何时间失效&#xff0c;例如&#xff1a;自然灾害&#xff0c;电力中断&#xff0c;网络中断&#xff0c;错误的系统变更等。为了应对挑战&#xff0c;我们必须设计合适的容灾…

在centos8中部署Tomcat和Jenkins

参考链接&#xff1a;tomcat安装和部署jenkins_jenkins和tomcat-CSDN博客 1、进入centos中 /usr/local 目录文件下 [rootlocalhost webapps]# cd /usr/local2、使用通过wget命令下下载tomcat或者直接在官网下载centos版本的包后移动到centos中的local路径下 3、下载tomcat按…

VUE3内置组件Transition的学习使用

更多ruoyi-nbcio功能请看演示系统 gitee源代码地址 前后端代码&#xff1a; https://gitee.com/nbacheng/ruoyi-nbcio 演示地址&#xff1a;RuoYi-Nbcio后台管理系统 更多nbcio-boot功能请看演示系统RuoYi-Nbcio亿事达企业管理平台 gitee源代码地址 后端代码&#xff1a;…

详解Postman使用

简介&#xff1a; 1.简介 PostMan&#xff0c;一款接口调试工具。 特点&#xff1a; 可以保留接口请求的历史记录 可以使用测试集Collections有效管理组织接口 可以在团队之间同步接口数据 1.简介 PostMan&#xff0c;一款接口调试工具。 特点&#xff1a; 可以保留接口请求…

从0到1入门C++编程——12 演讲比赛流程管理系统

文章目录 一、创建类并显示菜单二、退出管理系统三、开始演讲比赛四、查看往届记录五、清空比赛记录六、案例源代码 演讲比赛流程管理系统 比赛规则&#xff1a;演讲比赛共有12个人参加&#xff0c;比赛分两轮进行&#xff0c;第一轮为淘汰赛&#xff0c;第二轮为决赛。每名选手…

HTML万字学习总结

html文本标签特殊符号图片音频与视频超链接表单列表表格语义标签(布局) html文本标签 标签简介根目录规定文档相关的配置信息&#xff08;元数据元素表示文档的内容表示那些不能由其它 HTML 元相关元素&#xff08;(<base>、<link>, <script>、<style>…

今日AI:GPT-4.5意外曝光可能6月发布、UP主借AI识别情绪播放量186万、全球首个AI程序员诞生

欢迎来到【今日AI】栏目!这里是你每天探索人工智能世界的指南&#xff0c;每天我们为你呈现AI领域的热点内容&#xff0c;聚焦开发者&#xff0c;助你洞悉技术趋势、了解创新AI产品应用。 新鲜AI产品点击了解:AIbase - 智能匹配最适合您的AI产品和网站 &#x1f4e2;一分钟速…

Netty优化

文章目录 概述优化方法性能篇网络参数优化业务线程池的必要性共享 ChannelHandler设置高低水位线GC 参数优化线程绑定 高可用篇连接空闲检测流量整形堆外内存泄漏排查思路Netty 自带检测工具二分排查法&#xff1a;笨方法解决大问题 概述 netty 是一种异步的、基于事件驱动的网…

Elastic boosting的使用

boosting介绍 Boosting查询允许您降低与负面查询匹配的文档的相关性评分 boosting语法 GET /_search {"query": {"boosting": {"positive": {"term": {"text": "apple"}},"negative": {"term&q…

如何拆解技术瓶颈的难点

以大化小的思路 解决一个一个小问题从而解决最终问题 三段论&#xff1a; 抽象能力 职责领域划分 分层构建解决方案 案例&#xff1a;全局分布式事务的解决方案 抽象能力&#xff1a;全局分布式 是由一个个小的事务组合而成的&#xff0c;其中一个分布式事务出现问题&#xff…

亚马逊Bedrock引领生成式AI创新,Claude 3模型家族开启新时代

近日&#xff0c;亚马逊宣布其云计算平台亚马逊Bedrock已成为构建和扩展基于大型语言模型&#xff08;LLM&#xff09;和其他基础模型&#xff08;FMs&#xff09;的生成式AI应用的最佳平台。Anthropic公司开发的Claude模型家族&#xff0c;作为高性能FMs的代表&#xff0c;正在…

探索考古文字场景,基于YOLOv8全系列【n/s/m/l/x】参数模型开发构建文本考古场景下的甲骨文字符图像检测识别系统

甲骨文是一种非常历史悠久的古老文字&#xff0c;在前面我们基本上很少有涉及这块的内容&#xff0c;最近正好在做文字相关的项目开发研究&#xff0c;就想着基于甲骨文的场景来开发对应的检测识别系统&#xff0c;在前文中我们基于YOLOv5、YOLOv7和YOLOv9开发构建了在仿真数据…

激活函数Mish

paper&#xff1a;Mish: A Self Regularized Non-Monotonic Activation Function official implementation&#xff1a;https://github.com/digantamisra98/Mish 背景 在早期文献中&#xff0c;Sigmoid和TanH激活函数被广泛使用&#xff0c;随后在深度神经网络中失效。相比于…

Redis 创建群时报错 Node XXX is not empty

在创建 Redis 集群时报错[ERR] Node XXX is not empty. Either the node already knows other nodes (check with CLUSTER NODES) or contains some key in database 0. 主要原因是 RDB 或者 AOF 文件中有数据&#xff0c;redis集群搭建的时候需要所有节点都为 空&#xff0c;不…

【组件初始化链条】简化Unity组件的初始化

简介 在游戏脚本中我们通过借助GetComponent或TryGetComponent方法获取组件&#xff0c;所以当需要获取较多组件时&#xff0c;我们不可避免地要书写一些重复代码&#xff0c;为了提升代码简洁程度&#xff0c;简化组件初始化逻辑&#xff0c;本文以"组件初始化链条"…

Springboot的配置文件及其优先级

配置文件 内置配置文件 配置文件的作用&#xff1a;修改SpringBoot自动配置的默认值&#xff1b;SpringBoot在底层都给我们自动配置好&#xff1b;SpringBoot使用一个全局的配置文件&#xff0c;配置文件名是固定的&#xff1a; application.propertiesapplication.yml 以上…

网络建设与运维培训介绍和能力介绍

1.开过的发票 3.培训获奖的证书 4合同签署 5.实训设备

利用 boost::asio::ssl C/C++ 检查SSL/PEM证书文件的有效性

我们可以通过 boost::asio::ssl::context &#xff08;SSL上下文&#xff09;对象实例成员接口来检查SSL证书文件的有效性。 1、use_certificate_chain_file 使用证书链文件&#xff08;CA*&#xff09; 2、use_certificate_file 使用证书文件&#xff08;公钥&am…