【链表入门】关于链表节点的删除,有点复杂哦~(C语言) 摘要:解题思路:对于新手来说,可能有点复杂( 比如我(●'_'●))但简单概括一下就是将链表1的节点与链表2的节点逐一进行比较,如果符合条件(学号A=学号B)就修改指针,进行删除操作。具体流…… 题解列表 2024年12月10日 1 点赞 2 评论 1054 浏览 评分:9.9
与7无关的数(清晰明了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,t,sum=0; scanf("%d",&n); for(i=1;i<=n;i…… 题解列表 2024年12月10日 1 点赞 0 评论 316 浏览 评分:0.0
药房管理(清晰明了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int m,i,n,a,sum=0,N=0; scanf("%d",&m); scanf("%…… 题解列表 2024年12月10日 0 点赞 0 评论 167 浏览 评分:0.0
2879: 错误探测 摘要:解题思路:注意事项:参考代码: #include<stdio.h> int main() { int i, j, n; //n为数组的阶数,i为行,j为列; int row…… 题解列表 2024年12月10日 1 点赞 0 评论 250 浏览 评分:0.0
太Tm强了吧啊深V合格好大个很大干哈 摘要:解题思路:这段代码是一个简单的C++程序,用于从标准输入读取三个整数,并按照指定格式输出。下面是对代码的逐行分析:#include<iostream> 和 #include <iomanip>: 这…… 题解列表 2024年12月09日 0 点赞 0 评论 456 浏览 评分:0.0
C语言之自由下落的距离计算建模是精髓 摘要:#include <stdio.h> #include <stdlib.h> #include <string.h> int main() { int m,n; float…… 题解列表 2024年12月09日 2 点赞 0 评论 632 浏览 评分:10.0
哥德巴赫曾猜测 单循环 搞定 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; bool f(int x){ // 如果x小于等于1,则不是素数(…… 题解列表 2024年12月09日 0 点赞 0 评论 240 浏览 评分:0.0
最简单易懂的解法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n,m[200]; float t[200]; char c[100][100]; …… 题解列表 2024年12月09日 0 点赞 0 评论 195 浏览 评分:0.0
C语言 指针解决问题 练手 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main ( ){ int n=0 ,x=0 ,record=1 ; int a[10500]={0} ; …… 题解列表 2024年12月09日 0 点赞 0 评论 184 浏览 评分:0.0
矩阵最大值 简单做法希望能帮到你 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量m和n,用于存储矩阵的行数和…… 题解列表 2024年12月09日 0 点赞 0 评论 144 浏览 评分:0.0