7-1 jmu-python-韩信点兵 (20分) 7-2 打印数字矩形 (10分) 7-3 成绩统计 (10分) 7-4 找列表中最大元素的下标 7-5 删除列表中的重复值 如下: https://github.com/shylara-zhou/pythonPTA/tree/main ...
分类:
编程语言 时间:
2020-10-05 22:31:12
阅读次数:
56
ALGS4 Exercise 1.5.15 Problem Binomial trees. Show that the number of nodes at each level in the worst-case trees for weighted quick-union are binomia ...
分类:
编程语言 时间:
2020-10-05 21:48:17
阅读次数:
42
虚拟机环境设置关闭swap分区swapoff-a&&sed-i‘/swap/s/^(.*)$/#\1/g‘/etc/fstab&&free-m关闭selinuxsed-i‘s/SELINUX=enforcing/SELINUX=disabled/‘/etc/selinux/config关闭防火墙systemctlstopfirewal
分类:
Web程序 时间:
2020-10-05 21:41:21
阅读次数:
31
https://leetcode-cn.com/problems/find-mode-in-binary-search-tree/ class Solution { public: int count = 0, max_count = 0; TreeNode* pre = NULL; vector< ...
分类:
其他好文 时间:
2020-09-24 22:11:03
阅读次数:
80
1 tree = new QTreeWidget(this); 2 3 this->setSelectionMode(QAbstractItemView::ExtendedSelection); 4 5 tree->setColumnCount(2); 6 7 this->setColumnWidt ...
分类:
其他好文 时间:
2020-09-24 22:06:29
阅读次数:
54
Tree-Shaking就是将没有使用的模块去掉,这样来达到删除无用代码的目的 Tree-Shaking如果需要深入了解,可以查看rowup,babel, webpack打包, uglifyJs Tree-Shaking性能优化实践 - 原理篇:https://juejin.im/post/6844 ...
分类:
其他好文 时间:
2020-09-24 21:51:05
阅读次数:
35
public function getPrivilegeList($moduleType){ $authRuleModel = M('auth_rule'); $data = $authRuleModel->where(['module_type' => $moduleType])->select( ...
分类:
其他好文 时间:
2020-09-24 21:36:51
阅读次数:
44
一. 组件介绍 要实现前端纯js导出word文档,我们需要用到docxtemplater,jszip-utils,file-saver三个组件,接下来简要的介绍以下三个组件。 1、docxtemplater 介绍 docxtemplater是一种邮件合并工具,它以编程方式使用,处理条件、循环,并且可 ...
分类:
其他好文 时间:
2020-09-24 21:26:42
阅读次数:
37
Link Cut Centroids Fishing Prince loves trees, and he especially loves trees with only one centroid. The tree is a connected graph without cycles. A v ...
分类:
其他好文 时间:
2020-09-24 21:11:56
阅读次数:
36
给定两个二叉树,想象当你将它们中的一个覆盖到另一个上时,两个二叉树的一些节点便会重叠。 你需要将他们合并为一个新的二叉树。合并的规则是如果两个节点重叠,那么将他们的值相加作为节点合并后的新值,否则不为 NULL 的节点将直接作为新二叉树的节点。 示例 1: 输入: Tree 1 Tree 2 1 2 ...
分类:
其他好文 时间:
2020-09-24 21:03:04
阅读次数:
47