圆桌问题 Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others)Total Submission(s): 7955 Accepted Submission(s): 2851 Problem De ...
分类:
其他好文 时间:
2020-03-30 09:52:34
阅读次数:
86
一.问题 https://leetcode-cn.com/problems/nge-tou-zi-de-dian-shu-lcof/:面试题60:n个骰子的点数 二.解法 动态规划:用 dp[n][j] 来表示n个骰子的点数 j 出现的次数。 状态转移方程:表示n个骰子产生的点数 j 出现的次数等于 ...
分类:
其他好文 时间:
2020-03-26 01:26:22
阅读次数:
69
1、缺省参数 在定义一个函数的参数是给其传入一个默认的值,不传的时候用默认参数,缺省参数只能放在后面 一个函数可以有多个缺省参数。 def test(a, b=22) result = a + b print(result) return result test(11) test(22,33) de ...
分类:
编程语言 时间:
2020-03-24 23:01:39
阅读次数:
80
目录 装饰器 1、装饰器 /** 作者:sh22n链接:https://juejin.im/post/5e7822c3e51d4526f23a45ae来源:掘金 */ 类装饰器 装饰类的时候,装饰器方法一般会接收一个目标类作为参数。下面是一个给目标类增加静态属性 test 的例子: const de ...
分类:
Web程序 时间:
2020-03-24 12:52:02
阅读次数:
97
1.软件安装1)编译安装root 账号登陆后,依次执行以下命令:cd /tmpwget http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gztar zxvf lrzsz-0.12.20.tar.gz && cd lrzsz-0.12.20./con ...
分类:
Web程序 时间:
2020-03-23 15:06:44
阅读次数:
79
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>1.5.2.RELEASE</version> </de ...
分类:
编程语言 时间:
2020-03-23 12:40:57
阅读次数:
74
题目:给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。https://leetcode-cn.com/problems/er-cha-shu-de-zui-jin-gong-gong-zu-xian-lcof/submissions/ 写在前面:这一题不同于68-I 二叉搜索树的最近公共祖先 ...
分类:
其他好文 时间:
2020-03-22 19:44:21
阅读次数:
67
贪心,有一些点少不留意就会wa #include <iostream> #include <cstdio> #include <cstring> #include <limits> //#include <stack> #include<queue> #include <algorithm> #de ...
分类:
其他好文 时间:
2020-03-21 21:43:42
阅读次数:
64
import requestsimport bs4 url = "https://search.bilibili.com/all?keyword=%E7%BA%AA%E5%BD%95%E7%89%87"header={'User-Agent':""}de = requests.get(url)de. ...
分类:
其他好文 时间:
2020-03-21 21:04:39
阅读次数:
95
并查集+贪心 https://vjudge.net/contest/362147#problem/C #include <iostream> #include <cstdio> #include <cstring> #include <limits> #include <algorithm> #de ...
分类:
其他好文 时间:
2020-03-21 20:56:28
阅读次数:
60