排列组合 排列 首先引入itertools模块 permutations 排列 组合 combinations 组合 总结 ...
分类:
其他好文 时间:
2020-04-01 19:44:29
阅读次数:
62
Good news to tell you that our our new arrived Porsche Piwis tester II have the latest version V14.75 . It is the latest professional tester for Porsh ...
分类:
其他好文 时间:
2020-04-01 19:21:37
阅读次数:
70
1 class Solution 2 { 3 public: 4 vector<int> getRow(int k) 5 { 6 int n = k + 1; 7 vector<vector<int>> ans; 8 for(int i = 0;i < n;i ++) 9 { 10 ans.push ...
分类:
其他好文 时间:
2020-04-01 17:49:37
阅读次数:
65
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solu ...
分类:
其他好文 时间:
2020-04-01 16:35:39
阅读次数:
55
C++。思路如下: 对于连续整数序列[left, right]中的一点i,若要生成以i为根节点的BST,则有如下规律: i左边的序列可以作为左子树结点,且左儿子可能有多个,所以有vector<TreeNode *> left_nodes = generate(left, i - 1);; i右边的序 ...
分类:
其他好文 时间:
2020-04-01 01:02:26
阅读次数:
63
1、什么是哈希hash hash一类算法,该算法接受传入的内容,经过运算得到一串hash值 hash值的特点: I 只要传入的内容一样,得到的hash值必然一样 II 不能由hash值返解成内容 III 不管传入的内容有多大,只要使用的hash算法不变,得到的hash值长度是一定 2、hash的用途 ...
分类:
其他好文 时间:
2020-03-31 23:18:18
阅读次数:
165
面试题53 - II. 0~n-1中缺失的数字 一个长度为n-1的递增排序数组中的所有数字都是唯一的,并且每个数字都在范围0~n-1之内。在范围0~n-1内的n个数字中有且只有一个数字不在该数组中,请找出这个数字。 示例 1: 输入: [0,1,3] 输出: 2 示例 2: 输入: [0,1,2,3 ...
分类:
其他好文 时间:
2020-03-31 01:30:21
阅读次数:
81
题目描述 小 A 有 nn 个糖果盒,第 ii 个盒中有 a_iai? 颗糖果。 小 A 每次可以从其中一盒糖果中吃掉一颗,他想知道,要让任意两个相邻的盒子中糖的个数之和都不大于 xx,至少得吃掉几颗糖。 输入格式 输入的第一行是两个用空格隔开的整数,代表糖果盒的个数 nn 和给定的参数 xx。 第 ...
分类:
其他好文 时间:
2020-03-29 21:11:15
阅读次数:
140
The next lecture in a high school requires two topics to be discussed. The ii -th topic is interesting by aiai units for the teacher and by bibi units ...
分类:
其他好文 时间:
2020-03-29 01:44:16
阅读次数:
280
Problem Statement Snuke has decided to play a game using cards. He has a deck consisting of NN cards. On the ii -th card from the top, an integer AiAi ...
分类:
其他好文 时间:
2020-03-29 01:37:30
阅读次数:
90