Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the or ...
分类:
其他好文 时间:
2020-02-17 23:42:05
阅读次数:
71
一、键 是否存在exists 删除del 设置过期时间expire expireat pexpire pexpireat 设置永不过期persist 重命名rename renamenx 查询过期时间ttl 查询类型type 序列化dump 反序列化restore 排序sort 二、字符串Strin ...
分类:
其他好文 时间:
2020-02-17 15:38:01
阅读次数:
78
C++ delete报错 今天写了如下代码 编译没有报错,但是运行的时候报错了。原因是delete语句。 出错现象: 执行delete语句时,程序卡死。将delete注释掉,程序运行正常,但是发生了内存泄漏。 原因: p作为指向堆内存的指针,指向的是数组的首地址。而我更改了p的地址,如代码中的p++ ...
分类:
编程语言 时间:
2020-02-17 14:12:17
阅读次数:
65
题解: #include<iostream>using namespace std;int r=0;void swap(int &a,int &b){ int t=a; a=b; b=t; }void sort(int s[],int l,int r,int k[]){ int mid=s[(l+r ...
分类:
编程语言 时间:
2020-02-17 12:49:58
阅读次数:
87
https://www.runoob.com/w3cnote/radix-sort.html 算法系列 1.0 十大经典排序算法 1.1 冒泡排序 1.2 选择排序 1.3 插入排序 1.4 希尔排序 1.5 归并排序 1.6 快速排序 1.7 堆排序 1.8 计数排序 1.9 桶排序 1.10 基 ...
分类:
编程语言 时间:
2020-02-17 12:27:17
阅读次数:
57
table.on('sort(userTable)', function (obj) { sortObject = obj; tableIns.reload({ initSort: obj, where: $.extend(getQueryParams(), { field: obj.field, ...
分类:
其他好文 时间:
2020-02-17 10:44:32
阅读次数:
1168
题目:https://atcoder.jp/contests/abc155/tasks/abc155_c 这道题的题意是给我们n个string,让我们统计每个string出现的次数,并输出次数最多的一个或多个string(按字典序来排列) 当时我想的是用数组来统计每个string,之后再sort一次 ...
分类:
编程语言 时间:
2020-02-17 01:06:22
阅读次数:
79
1 //A算法 自动寻路 路径 2 class GetAutoPath{ 3 4 constructor(id, map, sPos, ePos, mapArr){ 5 //this.type = id.type; 6 this.id = id; 7 this.map = map; 8 this.s ...
分类:
编程语言 时间:
2020-02-16 21:03:06
阅读次数:
99
冒泡排序:最简单的排序算法 时间复杂度: 最优时间复杂度O(N),表示遍历一次没有发现任何可以交换的元素,排序结束 最差时间复杂度O(N2) 稳定性:稳定 Python代码: 1 #bubble_sort:冒泡排序 2 3 def bubble_sort(alist): 4 """冒泡排序""" 5 ...
分类:
编程语言 时间:
2020-02-16 20:40:57
阅读次数:
77
实现思想: 1.寻找[i, n)区间里的最小值min ( i>= 0 ) 2.交换min和第i的数 ( i>= 0 ) #include <iostream> #include <algorithm> using namespace std; void selectionSort(int arr[] ...
分类:
编程语言 时间:
2020-02-16 20:36:25
阅读次数:
76