摘要:
最大公约数 已知两个数x和y,求x和y的最大公约数 暴力循环求解: public static void gcd(int x, int y) { if (y > x) {//如果y>x,交换x与y int t = x; x = y; y = t; } for (int i = y; i > 0; i 阅读全文
posted @ 2021-08-12 17:45
李一李呀
阅读(688)
评论(0)
推荐(0)
摘要:
论文地址:《Very Deep Convolutional Networks for Large-Scale Image Recognition》 思维导图:https://mubu.com/explore/5JnjDt1vIng 一、背景 LSVRC:大规模图像识别挑战赛 ImageNet Lar 阅读全文
posted @ 2021-08-12 16:18
李一李呀
阅读(767)
评论(0)
推荐(0)