#include<stdio.h> #include<string.h> int array[11]; void jinWei(int n){ array[10]++; int X; int i = 10; if(array[i] == 2){ array[i] = 0; X = 1; i--; w ...
分类:
其他好文 时间:
2019-12-07 17:58:52
阅读次数:
83
多任务异步协程asyncio asyncio的使用 多任务协程 aiohttp的使用 异步协程爬虫案例 基于aiohttp的多任务协程的爬虫 ...
分类:
编程语言 时间:
2019-12-07 17:54:55
阅读次数:
58
使用Mybatis-plus进行基本的CRUD(增查改删)操作。 实体类(User)代码: import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField ...
分类:
其他好文 时间:
2019-12-07 16:02:59
阅读次数:
107
百度贴吧纵向爬取 上一个是横向爬取的,这个纵向爬取,具体怎么做的看代码 ...
分类:
其他好文 时间:
2019-12-07 14:50:47
阅读次数:
93
【程序41】题目:求0,1,2,3,4,5,6,7所能组成的8位奇数个数。 /** * 【程序41】 * 题目:求0,1,2,3,4,5,6,7所能组成的8位奇数个数。 */ public class Subject41 { public static void main(String[] args ...
分类:
编程语言 时间:
2019-12-07 14:43:19
阅读次数:
79
一,看题 1,位于0格可移动到相邻得1格。位于1格可移动到相邻的0格上。 2,从某一格开始可以移动的格子数。(应该不能重复,否则不久循环了。那就意味着我们可以要标记喽?) 3 二,写题 1,你是一次一次弄得。。我怕你好像记忆化不行。 2,果然忘记写了dfs中的 return memory[x][y] ...
分类:
其他好文 时间:
2019-12-07 14:17:18
阅读次数:
77
Student类 package com.springmvc.domain; public class Student { private int id; private String studentname; private int tid; private int classid; public ...
分类:
其他好文 时间:
2019-12-07 12:14:42
阅读次数:
67
应用python面向对象的基本功能,实现下面的"游戏人生"小程序 class person: def __init__(self,name,gender,age,arg): self.name = name self.gender = gender self.age = age self.arg = ...
分类:
编程语言 时间:
2019-12-07 10:52:38
阅读次数:
210
vue路由懒加载及组件懒加载: https://www.cnblogs.com/-roc/p/9983177.html 一、为什么要使用路由懒加载 为给客户更好的客户体验,首屏组件加载速度更快一些,解决白屏问题。 二、定义 懒加载简单来说就是延迟加载或按需加载,即在需要的时候的时候进行加载。 三、使 ...
分类:
其他好文 时间:
2019-12-07 10:30:43
阅读次数:
76