Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less tha ...
分类:
其他好文 时间:
2020-02-11 19:26:40
阅读次数:
79
在编译的时候出现了一大堆冲突的错误,如下: 1> 所有输出均为最新。1>msvcprtd.lib(MSVCP100D.dll) : error LNK2005: "public: __thiscall std::_Container_base12::~_Container_base12(void)" ...
分类:
其他好文 时间:
2020-02-11 09:23:51
阅读次数:
72
1. 安装包管理工具 npm 或者yarn npm install -g yarn yarn基于node,并且速度更快,能自动缓存你下载过的包,让你在离线、重复下载时不需要通过去网上拉取文件,直接在本地就可以安装你需要的包!并且,yarn分离的各个包的安装过程,合理排队,不产生高频请求,单个包安装失 ...
分类:
其他好文 时间:
2020-02-09 23:30:35
阅读次数:
77
A:建立模型(可以从CAD导入)1、介质(电路板)2、铜皮(ANT、GND)3、端口激励(PORT)4、辐射空气(AIR) B:查看指标(求解SYZ参数,增益方向等远场指标需要在Radiation →Insert Far Field Setup 插入坐标) 增益、方向图等 1.查看3D辐射 2.查看 ...
分类:
其他好文 时间:
2020-02-08 11:36:50
阅读次数:
127
1 设置虚拟机连接方式为桥接 此教程根据 网线桥接模式 操作,Wi-Fi操作也是一样的。 1.1 虚拟机关闭的状态下,点击“编辑” -> “虚拟网络编辑器” 点击“更改设置” 就可以看到桥接模式,其中桥接模式选项有多个,这里你可以选择基于以太网的还是无线局域网的(如果选项只有一个默认自动就可以了)。 ...
分类:
系统相关 时间:
2020-02-07 18:25:47
阅读次数:
95
原文网址:http://gisgeography.com/free-satellite-imagery-data-list/ 国外数据: 1.USGS Earth Explorer 网址:https://earthexplorer.usgs.gov/ 数据:包括Landsat系列,ASTER DEM ...
分类:
其他好文 时间:
2020-02-06 16:20:25
阅读次数:
239
Given a non-empty array of integers, return the k most frequent elements. Example 1: Input: nums = [1,1,1,2,2,3], k = 2 Output: [1,2] Example 2: Input ...
分类:
其他好文 时间:
2020-02-06 14:26:57
阅读次数:
65
Given a binary tree rooted at root, the depth of each node is the shortest distance to the root. A node is deepest if it has the largest depth possibl ...
分类:
其他好文 时间:
2020-02-06 11:07:31
阅读次数:
74
题目描述: 给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效。 有效字符串需满足: 左括号必须用相同类型的右括号闭合。左括号必须以正确的顺序闭合。注意空字符串可被认为是有效字符串。 示例 1: 输入: "()"输出: true示例 2: 输入: "()[] ...
分类:
其他好文 时间:
2020-02-06 10:35:31
阅读次数:
64
题意: 输入两个整数N和K(N<=1e4,K<=10),分别表示人数和行数,接着输入N行每行包括学生的姓名(八位无空格字母且唯一)和身高(【30,300】的整数)。按照身高逆序,姓名字典序升序将学生从高到矮排列,将学生均分为N行输出,最先输出的一行人数包括除不尽的余数学生,每行中间(如果这一行学生人 ...
分类:
其他好文 时间:
2020-02-06 01:30:07
阅读次数:
68