1.原理: 2.代码实现: 1 /* 2 * insert:实现插入排序 3 * ary[ARRAY] 需要排序的数组 4 * @return 5 * [ARRAY] 排序后的新数组 6 * by js0205 7 */ 8 function insert(ary) { 9 let handle = ...
分类:
编程语言 时间:
2021-06-28 19:14:34
阅读次数:
0
1 <!--找出7017-9999的能被3整除的数之和,并统计有多少个--> 2 <?php 3 $s=0; 4 $count = 0; 5 for($i=7017;$i<=9999;$i++){ 6 if($i%3==0){ 7 $count++; 8 $s+=$i; 9 } 10 } 11 ec ...
分类:
Web程序 时间:
2021-06-28 18:53:54
阅读次数:
0
1 <?php 2 // 乘法口诀 3 echo'<table width="800" height="200" border="1">'; 4 for($i=1;$i<=9;$i++) 5 { 6 echo'<tr>'; 7 for($j=1;$j<=$i;$j++) 8 { 9 echo'<td ...
分类:
Web程序 时间:
2021-06-28 18:52:56
阅读次数:
0
select 1 as id,'是' as text from dual union all select 0 as id ,'否' as text from dual 同时查询出十条数据 select * from dual connect by 0 + level <= 10; 按照这个特性计算 ...
分类:
数据库 时间:
2021-06-28 18:48:46
阅读次数:
0
/* 对于byte/short/char三种类型来说,如果右侧赋值的数值没有超过范围, 那么javac编译器将会自动隐含的为我们不上一个(byte)(short)(char)。 1如果右侧没有超过左侧的范围,编译器补上强转。 2如果右侧超过左侧的范围,那么编译器直接报错。 在给变量进行赋值的时候,如 ...
分类:
其他好文 时间:
2021-06-28 18:30:32
阅读次数:
0
搬个官方题解 class Solution { bool valid(const string& str) {//验证是否合法 int balance = 0; for (char c : str) { if (c == '(') { ++balance; } else { --balance; } ...
分类:
其他好文 时间:
2021-06-28 18:28:25
阅读次数:
0
处理时间的场景在软件开发中很常见,JDK提供了Date和Calendar,然而这套API并不是很好用。这里推荐使用JodaTime来进行时间的处理。这里放上JodaTime的官网地址:https://www.joda.org/joda-time/ Maven中央库中的依赖: <!-- https:/ ...
分类:
其他好文 时间:
2021-06-28 17:58:55
阅读次数:
0
function a1() { return new Promise(o => { console.log("a1") o('a1_1') }) } async function a2() { const _a2 = await a1() console.log(_a2); console.log( ...
分类:
其他好文 时间:
2021-06-28 17:45:59
阅读次数:
0
加入: import pylab pylab.rcParams['font.sans-serif'] = ['SimHei'] pylab.rcParams['font.sans-serif'] = ['Microsoft YaHei'] pylab.rcParams['axes.unicode_m ...
分类:
编程语言 时间:
2021-06-28 17:44:52
阅读次数:
0
轻轻的 我来到你的身边 想念你的 是我落寞的寂寥 时光不在 但是 你的温柔 我永远记得 在这个狂热的夏天 挥舞在整个天空中 留下的 是我对你无尽的思念 以及我无限的情怀 想飞的水 ``` 2021.06.25 ...
分类:
其他好文 时间:
2021-06-25 17:19:45
阅读次数:
0