码迷,mamicode.com
首页 >  
搜索关键字:sort    ( 12890个结果
JavaScript Math 对象
JavaScript Math 对象允许您对数字执行数学任务。 实例 Math.PI; // 返回 3.141592653589793 亲自试一试 Math.round() Math.round(x) 的返回值是 x 四舍五入为最接近的整数: 实例 Math.round(6.8); // 返回 7 ...
分类:编程语言   时间:2020-07-05 15:09:40    阅读次数:99
单词统计
package dao;import java.io.BufferedReader;import java.io.FileReader;import java.io.IOException;import java.text.NumberFormat;import java.util.ArrayLis ...
分类:其他好文   时间:2020-07-05 10:51:05    阅读次数:49
LeetCode75. 颜色分类
这道题的题意是,给出一个一维数组,数组中的元素只可能是0,1,2,分别表示红色、白色和蓝色。 我们需要做一个排序,使得0全部在数组前面,1在中间,2在后面。 (不过不能用sort函数) 方法一(常数空间,非一趟扫描) 可以用三个变量分别记录红色、白色和蓝色的出现次数,然后根据出现的次数,修改数组即可 ...
分类:其他好文   时间:2020-07-05 01:00:37    阅读次数:80
LeetCode——三数之和
public List<List<Integer>> threeSum(int[] nums) { List<List<Integer>> result = new ArrayList<>(); if(nums.length < 3)return result; Arrays.sort(nums); ...
分类:其他好文   时间:2020-07-04 22:39:06    阅读次数:63
Codeforces 1371E2 - Asterism (二分)
Description 思路 cf题解中合法的x的处于一段连续区间不太明白。在知道这个前提下,将E1的代码改成二分即可。 有空再补回来。 #include <iostream> #include <cstdio> #include <queue> #include <algorithm> #incl ...
分类:其他好文   时间:2020-07-04 19:00:50    阅读次数:82
python--列表,元组
列表 list在循环的时候不能删,因为会改变索引 ls = ['aaa', 'bbb', 'ccc', 'ddd'] for el in ls: print(el) ls.remove(el) print(ls) 结果: aaa ccc ['bbb', 'ddd'] names = ["aa", ' ...
分类:编程语言   时间:2020-07-04 18:51:57    阅读次数:54
React路由传参的三种方式
React路由传参的三种方式 方式 一: 通过params 1.路由表中 <Route path=' /sort/:id ' component={Sort}></Route> 2.Link处 HTML方式 <Link to={ ' /sort/ ' + ' 2 ' } activeClassNam ...
分类:其他好文   时间:2020-07-04 18:42:03    阅读次数:57
sort() 和 reverse() 方法只是对原来的列表进行操作,不会生成新的列表——找bug
找bug 看例子: test_scores = [100, 97, 76, 84, 93, 98, 86, 92, 76, 88, 95, 90, 95, 93] new_scores = test_scores.sort() new_scores = new_scores.reverse() pr ...
分类:其他好文   时间:2020-07-04 13:11:41    阅读次数:80
【Mongodb】开启慢查询
Mongodb开启慢查询 , 查找慢查询 , 日志记录相关 ...
分类:数据库   时间:2020-07-03 17:46:21    阅读次数:76
Redis 持久化 rdb、Aof对比
一、Redis 简介: Redis是一个开源的、基于内存的数据结构存储器,可以用作数据库、缓存和消息中间件。 Redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted ...
分类:数据库   时间:2020-07-03 17:09:08    阅读次数:77
12890条   上一页 1 ... 40 41 42 43 44 ... 1289 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!