自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(42)
  • 收藏
  • 关注

原创 1028 人口普查(用C语言精简的解决每日两题)

注释部分为傻乎乎比较法#include<stdio.h>#include<stdlib.h>#include<string.h>//typedef struct people{// char name[6];// int year;// int month;// int day;//}people;////int judge(int year,int month,int day,int year2,int month2,in.

2021-10-14 18:56:29 426

原创 1027 打印沙漏(用C语言精简的解决每日两题)

思路就是先统计出行数,然后再打印上半部分,再打印下半部分#include<stdio.h>#include<stdlib.h>int main(){ int n,row=1; char c; scanf("%d %c",&n,&c); n--; for(int i=2;(n-4*i+2)>0;i++){ //统计行数 n-=4*i-2; row++; } for(.

2021-10-14 18:19:25 680

原创 1026 程序运行时间 (用C语言精简的解决每日两题)

简单不解释#include<stdio.h>#include<stdlib.h>int main(){ int c1,c2; scanf("%d%d",&c1,&c2); int t=(int)((c2-c1+0.0)/100+0.5); printf("%.2d:%.2d:%.2d",t/3600,t/60%60,t%60);return 0;}1.对a四舍五入: int(a+0.5)...

2021-10-14 18:17:10 185

原创 1025 反转链表(用C语言精简的解决每日两题 未解决)

码了个巴子的还有个超时的没有解决,先mark一下#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct list{ int address; int data; int next;}list; //定义结构体void reverse(list node[],int begin,int end){ //写一个逆序函数 list temp; .

2021-10-14 18:14:21 182

原创 1024 科学计数法(用C语言精简的解决每日两题)

这个题真是学到了,先放一个自己的写法#include<stdio.h>#include<stdlib.h>#include<string.h>#include<math.h>int main(){ char a[10000],*prime; scanf("%s",a); if(a[0]=='-') //先打印一下符号 printf("-"); char *token=strtok(a+1,"E").

2021-10-09 17:01:00 746

原创 1023 组个最小数(用C语言精简的解决每日两题)

先放第一个,思路就是先数组存储,然后找到第一个不为零的数输出,然后再输出0,然后再输出别的数字#include<stdio.h>#include<stdlib.h>int main(){ int n[10]; char s[51]=""; int flag=0; for(int i=0;i<10;i++) scanf("%d",&n[i]); for(int i=0;i<10;i++) { .

2021-10-09 16:29:36 144

原创 1022 D进制的A+B(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ int a,b,d,temp; char s[100]=""; scanf("%d %d %d",&a,&b,&d); temp=a+b; if(temp==0) //如果是0 直接输出0就行了 { printf("0"); re.

2021-10-04 21:57:05 113

原创 1021 个位数统计(用C语言精简的解决每日两题)

没有什么难度,不多说#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ int count[10]={0}; int i=0; char n[1000]; scanf("%s",n); for(int i=0;i<strlen(n);i++){ count[n[i]-'0']++; } for(int i=0.

2021-10-04 21:10:55 93

原创 1020 月饼(用C语言精简的解决每日两题)

总体思路就是按单价排序,然后先卖贵的#include<stdio.h>#include<stdlib.h>typedef struct mcake{ //定义一个月饼结构体,当然用二维数组处理也可以 double storage; //定义成double "正数" double price; //定义成double "正数"}mcake;int compare(const void *a,const void *b){ mcake c=*(m.

2021-10-02 23:00:37 361

原创 1019 数字黑洞(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>#include<string.h>int compare(const void *a,const void *b){ //qsot的第四个参数,按递减顺序 return (*(char *)b)-(*(char *)a);}char *srev(char *n){ //字符串的反转函数,返回值是反转后的字符串 int i=0; int j=strlen(n)-1.

2021-10-02 22:52:09 222

原创 1018 锤子剪刀布(用C语言精简的解决每日两题)

这题不难,但是为啥代码写这么长?#include<stdio.h>#include<stdlib.h>int main(){ int n,balance=0; //balance是平的局数 char a,b; int count[2][3]={0}; scanf("%d",&n); for(int i=0;i<n;i++) //按B C J的顺序,方便后面“则输出按字母序最小的解” { sca.

2021-10-01 20:25:31 127

原创 1017 A除以B(用C语言精简的解决每日两题)

这个题属于是对做除法运算的拙劣模仿了#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ char a[1000],q[1000],r[5]=""; //a用来存储被除数,q用来存储结果,r用来存储余数和临时的运算数 int b,j=0,flag=0; scanf("%s %d",a,&b); for(int i=0;i<strlen(a);.

2021-10-01 20:20:24 541

原创 1016 部分A+B(用C语言精简的解决每日两题)

因为我想方便点操作,所以都定义成字符串和字符了#include<stdio.h>#include<stdlib.h>#include<string.h>int dfun(char a[],char c){ char temp[10]=""; for(int i=0;i<strlen(a);i++){ if(c==a[i]) sprintf(temp,"%s%c",temp,c); //这里就是把字.

2021-09-29 20:00:02 118

原创 1015 德才论(用C语言精简的解决每日两题)

注意细节,“德分不低于才分” ,因为少了一个等号三个测试点不过思路很简单,先给学生分类成四块,再分别对这四块排序,最后按顺序输出#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct stu{ int id; int dscore; int cscore;}stu;int compare(const void *a,const void *b){ //.

2021-09-29 19:52:55 175

原创 1014 福尔摩斯的约会(用C语言精简的解决每日两题)

这题真是给爷气死了第一次提交答案全部错误#include<stdio.h>#include<stdlib.h>#include<string.h>#include<ctype.h>int main(){ char str[4][61]; char day,h; int mm; char *days[]={"MON","TUE","WED","THU","FRI","SAT","SUN"}; //先存储,懂得都懂,第.

2021-09-28 19:33:31 226

原创 1013 数素数(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>#include<math.h>int judge(int n){ //判断是否是素数 for(int i=2;i<=sqrt(n);i++) if(n%i==0) return 0; return 1;}//2是第一个素数,3是第二个素数,如果从3开始后面可以直接设置步长为2判断//所以当m=1的时候,需要单独的判断.

2021-09-28 19:16:03 128

原创 1012 数字分类(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>#include<math.h>int main(){ int n,num,count=0,count1=0,max=0; int a[5]={0}; //数组分别代表a1到a5,初始化为0 scanf("%d",&n); for(int i=0;i<n;i++){ scanf("%d",&num); //在输入的时候就开始.

2021-09-28 11:31:24 136

原创 1011 A+B 和 C(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>int main(){ int n; long long a,b,c; //注意题目最大值是2的31次方,所以肯定不能用int了 scanf("%d",&n); for(int i=1;i<=n;i++){ scanf("%lld %lld %lld",&a,&b,&c); //是lld 不是d if(.

2021-09-28 11:20:39 103

原创 1010 一元多项式求导(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>int main(){ int m,n; int i=0; while(~scanf("%d%d",&m,&n)) { if(n==0) { m=0;n=1; //这里其实是为了后面输出0 0做准备 i++; .

2021-09-26 19:10:59 219

原创 1009 说反话(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>int main(){ char words[90][90]; //二维数组,用指针数组也可以 int n=0; while(~scanf("%s",words[n])) //需要自己结束输入 n++; printf("%s",words[n-1]); //倒序输出就行了 for(int i=n-2;i>=0;i--) pr.

2021-09-26 19:04:56 94

原创 1008 数组元素循环右移问题 (用C语言精简的解决每日两题)

先放一个投机取巧的方法:直接打印就行了,我才不移动#include<stdio.h>#include<stdlib.h>int main(){ int n,m; scanf("%d%d",&n,&m); int nums[n]; for(int i=0;i<n;i++){ scanf("%d",&nums[i]); } int flag=n-(m%n); //先打印的那个数字下标,.

2021-09-26 11:46:50 247

原创 1007 素数对猜想(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>#include<math.h>int judge(int a){ //先写一个判断是否是素数的函数 for(int i=2;i<=sqrt(a);i++) //sqrt求平方根 if(a%i==0) return 0; return 1;}int main(){ int n,count=0; scanf(".

2021-09-26 11:19:48 140

原创 1006 换个格式输出整数(用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ int num,count=1; //count用来判断个十百位 char str[50]=""; //不初始化后面用sprintf会有小问题,不信可以试试 scanf("%d",&num); while(num>0){ int temp=num%10; f.

2021-09-24 20:37:32 88

原创 1005 继续(3n+1)猜想 (用C语言精简的解决每日两题)

先放一个错误代码:#include<stdio.h>#include<stdlib.h>int main(){ int n,judge=0; int flag[10000]; scanf("%d",&n); int nums[n]; for(int i=0;i<n;i++) { scanf("%d",&nums[i]); int num=nums[i]; wh.

2021-09-24 20:24:03 167

原创 1004 成绩排名 (用C语言精简的解决每日两题)

太长时间没碰指针,想熟悉一下,索性直接写了三种解法,思路都是一样的1.指针数组2.结构体数组3.指针//#include <stdio.h>//#include <stdlib.h>////typedef struct stu{// char *name;// char *id;// int grade;//}stu;////int main(){// int n,max=0,min=100;// int maxi,min.

2021-09-23 20:51:03 189

原创 1003 我要通过!(用C语言精简的解决每日两题)

#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ int n; char str[100]; //尽量定义大一点,不然有测试点过不了 scanf("%d",&n); while(n--){ scanf("%s",str); int np=0,nt=0,na=0; //p数量,t数量,a数量 .

2021-09-23 20:37:19 433

原创 1002 写出这个数 (用C语言精简的解决每日两题)

#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ int total=0; char n[100]; char *pyin[10]={"ling","yi","er","san","si","wu","liu","qi","ba","jiu"}; //拼音数组 scanf("%s",n); for(int i=0;i<strlen(n);.

2021-09-22 20:16:48 108

原创 1001 害死人不偿命的(3n+1)猜想 (用C语言精简的解决每日两题)

#include <stdio.h>#include <stdlib.h>int main(){ int step=0; //步数 int n; scanf("%d",&n); while(n>1){ //直到为1 if(n%2==0) //为偶数 n/=2; else //为奇数 n=(3*n+1)/2; step+=1; //不管.

2021-09-22 20:04:38 122

原创 PTA:The Kth Largest X in BST (30分) C语言

#include <stdio.h>#include <stdlib.h>typedef struct TNode *BinTree;struct TNode{ int Key; BinTree Left; BinTree Right;};BinTree BuildTree(); /* details omitted */int KthLargest ( BinTree T, int X );int main(){ BinTre.

2020-11-28 10:24:48 1792 1

原创 PTA:二叉搜索树的操作集 (30分) C语言

#include <stdio.h>#include <stdlib.h>typedef int ElementType;typedef struct TNode *Position;typedef Position BinTree;struct TNode{ ElementType Data; BinTree Left; BinTree Right;};void PreorderTraversal( BinTree BT ); /* 先序.

2020-11-28 10:23:27 398

原创 PTA:Percolate Up and Down (20分)

#include <stdio.h>#include <stdlib.h>typedef int ElementType;#define MinData -1typedef struct HeapStruct *PriorityQueue;struct HeapStruct { ElementType *Elements; int Capacity; int Size;};PriorityQueue Initialize( int Ma.

2020-11-28 10:22:01 291

原创 PTA:二分查找 (20分) C语言

#include <stdio.h>#include <stdlib.h>#define MAXSIZE 10#define NotFound 0typedef int ElementType;typedef int Position;typedef struct LNode *List;struct LNode { ElementType Data[MAXSIZE]; Position Last; /* 保存线性表中最后一个元素的位置 */};.

2020-11-28 10:20:38 1750

原创 PTA:二叉树的层次遍历 (25分) C语言

#include<stdio.h>#include<stdlib.h>typedef struct BtNode{ char data; struct BtNode *lchild,*rchild;}BtNode;BtNode*createBiTree(){ char c; scanf("%c",&c); if(c=='#'){ return NULL; }else{ BtNode *bt=( BtNode.

2020-11-17 10:43:25 1130

原创 PTA:还原二叉树 (25分) C语言

#include<stdio.h>#include<stdlib.h>typedef struct tree{ char data; struct tree *left,*right;}tree;int treeheight(tree *root){ if(root==NULL) return 0; else{ int len1=treeheight(root->left); int le.

2020-11-17 10:42:09 3826

原创 PTA:Tree Traversals Again(25分) C语言

#include<stdio.h>#include<stdlib.h>typedef struct stack{ int stacksize; int *top; int *base;}stack;stack s;int preorder[30];int inorder[30];int n,flag=0;void getorder(int *preorder,int *inorder){ s.stacksize=20; s.b.

2020-11-16 12:31:29 183

原创 PTA:List Leaves (25分) C语言

#include<stdlib.h>#include<stdio.h>typedef struct node{ int head; int left,right;}node;node tree[11];int createtree(node tree[]){ int n; char a,b; scanf("%d",&n); getchar(); if(n==0) return -1; .

2020-11-16 11:53:28 146

原创 PTA:树的同构 (25分) C语言

#include<stdio.h>#include<stdlib.h>typedef struct node{ char data; int left,right;}node;node tree1[15];node tree2[15];int createtree(node tree[]){ int n; char a,b; scanf("%d",&n); getchar(); if(n==0) ...

2020-11-16 11:50:29 473

原创 PTA: 根据后序和中序遍历输出先序遍历 C语言

根据后序和中序遍历输出先序遍历 (20分)#include<stdio.h>void fun(int *post,int *in,int n){ if(n==0) return; int root,i; root=post[n-1]; for(i=0;i<n;i++){ if(in[i]==root) break; } printf(" %d",root); fun(post,in,i);

2020-11-09 21:16:16 730

原创 PTA:先序输出叶结点 (20分) C语言

先序输出叶结点 (20分)#include <stdio.h>#include <stdlib.h>typedef char ElementType;typedef struct TNode *Position;typedef Position BinTree;struct TNode{ ElementType Data; BinTree Left; BinTree Right;};BinTree CreatBinTree(); /*

2020-11-08 21:54:10 348

原创 PTA:二叉树的遍历 (25分) C语言

二叉树的遍历 (25分)前三个遍历用特别特别ez的递归层次遍历用队列实现#include <stdio.h>#include <stdlib.h>typedef char ElementType;typedef struct TNode *Position;typedef Position BinTree;struct TNode{ ElementType Data; BinTree Left; BinTree Right;};B

2020-11-08 20:44:15 1978

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除