航班时间(2018蓝桥杯省赛第六题) 摘要:题目:题目描述小 h 前往美国参加了蓝桥杯国际赛。小 h 的女朋友发现小 h 上午十点出发,上午十二点到达美国,于是感叹到"现在飞机飞得真快,两小时就能到美国了"。小 h 对超音速飞行感到十分恐惧。仔…… 文章列表 2022年01月27日 0 点赞 0 评论 238 浏览 评分:9.9
精品文章 人工智能——CNN卷积神经网络项目之猫狗分类 摘要:###首先先导入所需要的库 ```python import sys from matplotlib import pyplot from tensorflow.keras.utils imp…… 文章列表 2022年01月27日 0 点赞 0 评论 447 浏览 评分:9.9
计算机四级网络工程师——刷题摘录(第一天) 摘要:###操作系统原理(单选题摘录)(每日更新几篇) 1.操作系统的作用:资源管理、控制程序执行 2.fork()提供的接口为:系统调用 3.题目中出现红色的圈,则答案为:系统调用 4.多道程序:…… 文章列表 2022年01月28日 0 点赞 1 评论 137 浏览 评分:9.9
安装和配置虚拟机(the most simplest) 摘要:1.进入该网址:https://msdn.itellyou.cn/ 2.点击:操作系统 3.选择自己喜欢的操作系统,点击打开 4.点击右边操作系统右边的【详细信息】 5.复制下方链接 6.打…… 文章列表 2022年01月28日 0 点赞 0 评论 252 浏览 评分:9.9
python-左孩子右兄弟 摘要:解题思路:参考博客:https://blog.csdn.net/qq_52652816/article/details/122333311具体思路可以参考上面连接。我用python分别写了递归的解法和…… 文章列表 2022年02月11日 0 点赞 0 评论 326 浏览 评分:9.9
判断素数(效率翻倍) 摘要:#include<stdio.h>#include<math.h>void prime(int num);int main(){ int num; scanf("%d", &num); prime(n…… 文章列表 2022年02月12日 0 点赞 0 评论 173 浏览 评分:9.9
三阶矩阵转置,n阶同理 摘要:#include<stdio.h> void transpose(int(*p)[3]); int main() { int arr[3][3]; int(*p)[3] = arr; …… 文章列表 2022年02月12日 0 点赞 0 评论 286 浏览 评分:9.9
字符串翻转 摘要:#include<stdio.h>#include<string.h>void rotate(char *p,int len);int main(){ char str[1000]; char* p …… 文章列表 2022年02月12日 0 点赞 0 评论 200 浏览 评分:9.9
连接两个字符串的源代码(指针操作) 摘要:#include<stdio.h>#include<string.h>void stick(char* p1, char* p2, int n1, int n2);int main(){ char s…… 文章列表 2022年02月12日 0 点赞 0 评论 150 浏览 评分:9.9
精品文章 人工智能之猫狗分类优化(英文版) 摘要:为了提高我的英文水平,接下来的文章将采用英文论述 ###Context To get higher accuracy,We always use plenty images to train th…… 文章列表 2022年02月12日 0 点赞 0 评论 314 浏览 评分:9.9