C语言程序设计教程(第三版)课后习题5.8 (C语言代码) 摘要:解题思路:会运用if else进行运算注意事项:参考代码:#include<stdio.h>int main(){ double a,t; scanf("%lf",&a); if(a…… 题解列表 2018年07月31日 0 点赞 0 评论 798 浏览 评分:0.0
C语言训练-计算一个整数N的阶乘 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main (){ int n; int i,a; scanf("%d",&n); a=…… 题解列表 2018年07月31日 0 点赞 0 评论 780 浏览 评分:0.0
数据结构-n阶Hanoi塔问题 (C语言代码) 摘要: 解题思路:找到他们之间的重复过程,使用递归求解。 hanoi`塔的搬运过程; i :左边的柱子只有两个圆盘我们先假设在A柱子上只有两个圆盘,不用图我们用大脑想象出来最佳…… 题解列表 2018年07月31日 0 点赞 0 评论 1361 浏览 评分:3.6
筛排处理 (C++代码) 摘要:解题思路: 利用C++的STL中的set进行去重和排序注意事项: 输出两个空行#include "iostream" #include "algorithm" #include "set" us…… 题解列表 2018年07月31日 1 点赞 0 评论 1008 浏览 评分:0.0
蓝桥杯2016年第七届真题-路径之谜 (C++代码) 摘要:解题思路: 参考代码:#include<bits/stdc++.h> using namespace std; const int SIZE = 23; int Map…… 题解列表 2018年07月31日 0 点赞 0 评论 1735 浏览 评分:0.0
蓝桥杯算法提高VIP-传染病控制 (C++代码) 摘要:解题思路: 使用DFS暴力建树,然后使用DFS暴力搜索加剪枝操作。参考代码:#include<iostream> #include<cstdio> #include<cstring> #incl…… 题解列表 2018年07月31日 1 点赞 0 评论 1561 浏览 评分:0.0
登陆验证问题(二) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char s1[100],s2[100]; int i=3; …… 题解列表 2018年07月31日 0 点赞 0 评论 934 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.1 (C语言代码) 摘要:解题思路:最大公约数,把最大的那个数赋值给max,然后往下除。最小公倍数的话,用两数乘积除以最大公约数注意事项:判断条件参考代码:#include<stdio.h>int main() { int n…… 题解列表 2018年07月31日 0 点赞 0 评论 894 浏览 评分:0.0
数据结构-KMP算法中的模式串移动数组 (C语言代码)福利 摘要:解题思路:KMP算法就是掌握next数组的实现过程附视频教程:https://www.bilibili.com/video/av2975983/?p=39注意事项:next[]数组和T数组,下标1为第…… 题解列表 2018年07月31日 0 点赞 0 评论 1686 浏览 评分:0.0
字符串中间和后边*号删除 (C语言代码)题目有毒。 摘要:解题思路:注意事项:题目有毒。怎么交都不正确参考代码:#include <string.h>#include<stdio.h>void fun(char *a){ int i,k,j; char b[…… 题解列表 2018年07月31日 1 点赞 0 评论 1139 浏览 评分:0.0