1024: [编程入门]矩阵对角线求和 摘要:#include <stdio.h>int main(){ int box[3][3]={1,2,3,1,1,1,3,2,1}; int x,y; int Mainline=0,secondline=…… 文章列表 2022年02月24日 0 点赞 0 评论 160 浏览 评分:0.0
dfs-马走三步的覆盖点 摘要:sample input:第一行输入两个整数n(1<=x<=100),m(1<=m<=100)代表棋盘行数和列数,第二行输入两个整数x,y代表马的初始位置。sample output:输出整个棋盘,&…… 文章列表 2022年02月23日 0 点赞 0 评论 310 浏览 评分:0.0
深度优先搜索-族谱直系后代 摘要:题目描述:sample input:输入的第一行有一个整数n(1<=n<=100000),表示家谱的总人数,接下来读入n-1行,每行有一个整数,表示第i个人有多少个直系后代。sample output…… 文章列表 2022年02月23日 0 点赞 0 评论 231 浏览 评分:0.0
C语言训练-斐波纳契数列 (C语言代码)递归 摘要: 1:把斐波纳契数列,分为两部分,前面的两个1,以及后面的部分,把这两部,分开输出; 2:输出个数为1,则输出:1,输出个数为2,则输出:1 3:其他的采用递归;这题还可…… 文章列表 2022年02月19日 0 点赞 0 评论 279 浏览 评分:9.9
精品文章 cnn卷积神经网络(史上最容易理解版) 摘要:什么是cnn卷积神经网络?ta有什么用呢? 这些问题是否现在或者曾经是你们心中的问题? #cnn卷积神经网络详解 cnn卷积神经网络是一种人工智能网络,用于图片识别、图片分类等。 那怎么可以进…… 文章列表 2022年02月16日 0 点赞 1 评论 814 浏览 评分:9.9
Pascal三角 (C语言代码) 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int main(){ int n,m ,a[1…… 文章列表 2022年02月14日 0 点赞 0 评论 197 浏览 评分:0.0
剪刀石头布 摘要:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int main(){ int a[3]={0,…… 文章列表 2022年02月13日 0 点赞 0 评论 196 浏览 评分:9.9
发工资咯(C语言代码) 摘要:#include #include #define maxn 105 int main() { int n,arr[maxn]; while(scanf("%d",&n)…… 文章列表 2022年02月13日 0 点赞 0 评论 315 浏览 评分:7.6
python-巧克力 摘要:解题思路:python代码超时,思路上感觉没什么问题,可能是python的运行效率太慢了。假设每个品种的巧克力用cho[i]表示,cho[i][0]代表价格,cho[i][1]代表剩余保质期天数,ch…… 文章列表 2022年02月12日 0 点赞 0 评论 416 浏览 评分:9.9
精品文章 人工智能之猫狗分类优化(英文版) 摘要:为了提高我的英文水平,接下来的文章将采用英文论述 ###Context To get higher accuracy,We always use plenty images to train th…… 文章列表 2022年02月12日 0 点赞 0 评论 397 浏览 评分:9.9