蓝乐
蓝乐
全部文章
题解
归档
标签
去牛客网
登录
/
注册
蓝乐的博客
全部文章
/ 题解
(共5篇)
题解 | #上三角矩阵判定#
#include <stdio.h> int main() { int n=0; scanf("%d",&n); int arr[10][10]; int i=0; int j=0; for(i=0;i<n;i++) ...
C
2021-04-22
1
555
题解 | #反转链表#
思索了许久,我想出了不带头结点的做法,依旧是利用头插法,代码如下: struct ListNode* ReverseList(struct ListNode* pHead ) { // write code here' struct ListNode* p=(struct ListN...
C
2021-04-19
0
499
题解 | #序列中删除指定数字#
在不考虑删除的前提下若只为了满足输出要求则可以在遇到指定数字就跳过不打印,虽然该代码通过了,但肯定是不合题意的 #include <stdio.h> int main() { int n=0; int arr[50]={0}; scanf("%d",&n...
C
2021-04-14
0
444
题解 | #登录验证#
#include <stdio.h> int main() { char name[20]="0"; char password[20]="0"; while(scanf("%s %s",name,password)!=EOF) { if(...
C
2021-04-08
6
664
题解 | #图像相似度#
#include <stdio.h> int main() { int m=0,n=0; scanf("%d %d",&m,&n); int arr1[100][100]={0}; int arr2[100][100]={0}; f...
C
2021-04-08
0
523