码迷,mamicode.com
首页 >  
搜索关键字:the maximum number o    ( 30279个结果
es6数值类型
<script type="text/javascript"> // Number常用方法 /* Number.isFinite() 用来检查一个数值是否为有限的(finite) 对于非数字,不会做隐式类型转换,直接返回false Number.isNaN() 用来检查一个值是否为NaN */ co ...
分类:其他好文   时间:2020-07-26 15:10:34    阅读次数:61
es6 Map&Set
<script type="text/javascript"> // map基本使用 let map=new Map(); map.set('name','张三'); map.set('age',11); map.set('已婚',false); console.log(map.get('name' ...
分类:其他好文   时间:2020-07-26 15:08:49    阅读次数:53
POJ3268 - Silver Cow Party - Dijkstra跑两遍最短路
题意 有$N$头牛,序号为1-N(来自不同牛场),他们要去序号为$X$x的地方参加派对, 问去+返的最少时间。(但是我有疑惑的是:题目的输出给的是“the maximum of time”???) 每组数据给出N、M、X,接下来M条边,是有向图。 思路 先用Dijkstra跑一遍最短路,接着讲该邻接 ...
分类:其他好文   时间:2020-07-26 15:01:15    阅读次数:70
HDU 1325 Is It A Tree?
A tree is a well-known data structure that is either empty (null, void, nothing) or is a set of one or more nodes connected by directed edges between ...
分类:其他好文   时间:2020-07-26 02:05:42    阅读次数:102
数字金额转变成大写汉字金额
/** * @desc 金额转换成大写 * @param {Number} n 需要转换成大写的金额 * @return {String} 转换后的大写中文金额 * @example convertIntegerToChineseCash('123') =>'壹百贰拾叁元整' */ function ...
分类:其他好文   时间:2020-07-26 01:55:47    阅读次数:162
Delphi2007安装报Invalid Serial Number问题
Delphi 2007安装程序根据不同的序列号(许可文件)来判断安装版本,一般ISO中自带的许可文件是专业版的。 下载了N天,终于把Delphi 2007 for Win32的ISO搬到了硬盘上,谁知安装时提示“Invalid Serial Number”。 不知哪位先人曰过:“内事不决问老婆,外事 ...
分类:Windows程序   时间:2020-07-26 01:16:46    阅读次数:96
Ubuntu批量操作文件
1. 批量重命名文件为数字编号 进入所需要重命名的数据集的文件夹,在终端运行 $ i=k; for x in ./*; do mv $x $i.mp4; let i=i+1; done # 'k' is the start number you want, such as 1 or 1000; '. ...
分类:系统相关   时间:2020-07-26 00:44:57    阅读次数:112
python递归函数
递归函数# 了解什么事递归 :在函数中调用自身就是递归函数 # 最大递归深度默认的最大深度为997 / 997 是python从内存角度出发做得限制# 能知道递归# 能知道递归的应用场景# 初始递归# 算法--二分查找算法# 三级菜单--递归实现# RecursionError: maximum r ...
分类:编程语言   时间:2020-07-26 00:35:10    阅读次数:72
Codeforces #659 A. Common Prefixes
##题面 he length of the longest common prefix of two strings s=s1s2…sn and t=t1t2…tm is defined as the maximum integer k (0≤k≤min(n,m)) such that s1s2…s ...
分类:其他好文   时间:2020-07-26 00:15:56    阅读次数:106
Data Guard Physical Standby Setup in Oracle11.2 & 后加 Data Guard Broker 之03 (Maximum Availability)
1.主库 [oracle@xag1124a ~]$ sqlplus / as sysdba SQL> select protection_mode,protection_level,log_mode,open_mode,flashback_on from v$database; PROTECTION ...
分类:数据库   时间:2020-07-25 23:57:18    阅读次数:177
30279条   上一页 1 ... 58 59 60 61 62 ... 3028 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!