A 根据性质,\(a,b,c\) 中的最大值一定会在 $x,y,z $ 中出现两次 #include <bits/stdc++.h> using namespace std; int main() { int t; cin >> t; int a[3]; while(t --) { memset(a ...
分类:
其他好文 时间:
2020-07-18 22:42:22
阅读次数:
86
struct BinaryTreeNode { int nvalue=0; BinaryTreeNode* pleft = nullptr; BinaryTreeNode* pright = nullptr; BinaryTreeNode* parent = nullptr;};vector<vec ...
分类:
其他好文 时间:
2020-07-18 22:37:14
阅读次数:
87
* branch master -> FETCH_HEAD error: insufficient permission for adding an object to repository database .git/objects fatal: failed to write object fa ...
分类:
数据库 时间:
2020-07-18 22:35:47
阅读次数:
88
This section describes lock types used by InnoDB. 翻译:本节描述了InnoDB使用的锁类型。 Shared and Exclusive Locks(共享锁和排他锁) Intention Locks(意向锁) Record Locks(记录锁) Gap ...
分类:
数据库 时间:
2020-07-18 22:25:46
阅读次数:
107
Given some segments of rope, you are supposed to chain them into one rope. Each time you may only fold two segments into loops and chain them into one ...
分类:
其他好文 时间:
2020-07-18 22:21:25
阅读次数:
73
题目来源:leetcode347 前k个高频元素 题目描述: 给定一个非空的整数数组,返回其中出现频率前 k 高的元素。 示例 1: 输入: nums = [1,1,1,2,2,3], k = 2 输出: [1,2] 示例 2: 输入: nums = [1], k = 1 输出: [1] 提示: 你 ...
分类:
其他好文 时间:
2020-07-18 19:48:04
阅读次数:
59
最近项目有一个需求,页面有一个表格A,点击打开弹框,弹框里也是一个表格B,把弹框中表格B选中的数据,放在页面的表格A中,但是再打开弹框的时候表格B中的数据要回选。 el-table 提供了一种回选 rows.forEach(row => { this.$refs.multipleTable.togg ...
分类:
其他好文 时间:
2020-07-18 16:03:24
阅读次数:
70
//query传参,使用name跳转 this.$router.push({ name:'second', query: { queryId:'20180822', queryName: 'query' } }) //query传参,使用path跳转 this.$router.push({ path ...
分类:
其他好文 时间:
2020-07-18 15:24:47
阅读次数:
80
https://ac.nowcoder.com/acm/problem/15253太简单了,直接上代码吧! #include <iostream> #include <cstring> #include <cmath> #include <stdio.h> #include <cstdlib> #i ...
分类:
其他好文 时间:
2020-07-18 13:48:13
阅读次数:
50
实现一个简单的常驻任务是容易的,写一个while True就可以了,但是同时要能接收外界传来的参数,就稍微有点复杂. 我第一个想到的是网络编程中的server/client模式 server作为常驻进程,可以接受client传来的各种参数进行处理 服务端:server.py import socke ...
分类:
编程语言 时间:
2020-07-18 13:41:11
阅读次数:
72