冷酷的杀猪匠
冷酷的杀猪匠
全部文章
分类
题解(74)
归档
标签
去牛客网
登录
/
注册
冷酷的杀猪匠的博客
全部文章
(共74篇)
【十二题解】 | #高精度整数加法#
#include<stdio.h> int main(){ char num1[1000]={0}; char num2[1000]={0}; while(scanf("%s", num1) != EOF){ scanf("%s", num2); int len1, le...
C
2022-03-06
0
274
【十二题解】 | #挑7#
这难度标准我就很迷,为什么这种题也能是中等难度啊 #include<stdio.h> int seven(int a){ if(a%7==0)return 1; while(a!=0){ if(a%10==7)return 1; a/=10; } return 0; }...
C
2022-03-06
0
342
【十二题解】 | #计算字符串的编辑距离#
这里要注意的一个点就是创建dp数组的时候,行和列都需要多一个,因为dp[0][0]的含义是两个单词都只有0个的时候需要编辑的次数,所以比如说某个单词有七个,初始化dp数组的时候我只给七个,0会占去一个所以只有六个字母会被比较 #include<stdio.h> int f_min(int...
C
2022-03-06
0
422
【十二题解】 | #从单向链表中删除指定值的节点#
#include<stdio.h> typedef struct no{ int data; struct no*next; }node; void insert(node*a, int data, int head){ node*new=(node*)malloc(sizeof(no...
C
2022-03-05
0
346
【十二题解】 | #名字的漂亮度#
#include<stdio.h> int main int number; scanf("%d\n", &number); for(int i=0; i<number; i++){ int hash[26]={0}; char name; scan...
C
2022-03-05
4
401
【十二题解】 | #迷宫问题#
#include<stdio.h> void dfs(int** lujing, int**table, int loc, int i, int j, int m, int n){ if(i==m-1 && j==n-1){ lujing[loc][0]=i; ...
C
深度优先搜索
2022-03-05
0
347
【十二题解 】| #求小球落地5次后所经历的路程和第5次反弹的高度#
#include<stdio.h> int main(){ int height; scanf("%d", &height); float all= 0.0; all+=height; all+=height; all+=height/2.0; all+=height/4.0; ...
C
2022-03-05
0
274
【十二题解】 | #字符串加密#
#include<stdio.h> int main(){ char data[100]; while(scanf("%s", data) != EOF){ char val[100]; scanf("%s", val); char key[26]={0}; char hash[...
C
2022-03-05
0
211
【十二题解】 | #整数与IP地址间的转换#
#include<stdio.h> int main(){ int ip[4]={0}; scanf("%d.%d.%d.%d", &ip[0], &ip[1],&ip[2],&ip[3]); long long data=0; for(int i=0; ...
C
2022-03-05
1
304
题解 | #密码截取#
#include<stdio.h> int f_max(int a, int b){ return a>b?a:b; } int main(){ char data[2500]; scanf("%s", data); int lenth=0; for(; data[lenth] !...
C
2022-03-05
0
359
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页