import java.util.Arrays; public class SelectSort { public static void main(String[] args) { int a[] = {5, 4, 3, 2, 1}; int[] result = selectSort(a); S ...
分类:
编程语言 时间:
2021-01-18 10:44:44
阅读次数:
0
public class test11 { public static void main(String[] args) { int [][]grid={{1,0,0,0},{1,1,0,0}}; int [][]hits={{1,1},{1,0}}; int []result=hitBricks( ...
分类:
其他好文 时间:
2021-01-18 10:36:45
阅读次数:
0
问题:给定一个无符号整型的对象,统计其二进制序列中1的个数? 遍历: unsigned bit_count(unsigned x) { unsigned result=0; while(x){ result+=x&01?1:0; x>>=1; } return result; } 位运算: unsi ...
分类:
其他好文 时间:
2021-01-13 11:05:06
阅读次数:
0
SpringBoot+MyBatis+PostgreSQL配置 1.前置依赖配置 首先我们需要引入maven的依赖包 连接PostgreSQL时需要手动指定schema位置,否则,连接上的database会默认使用public这个内置的schema,导致在查询别的schema下的表时,会报类似如下的 ...
分类:
数据库 时间:
2021-01-13 11:00:30
阅读次数:
0
无序集合 在name对应的集合中添加元素,可以添加多个元素 sadd(name,values) redis_conn.sadd('name', '王二狗', '王大锤')result = redis_conn.smembers('name') # 获取当前set集合中的元素内容print(resul ...
分类:
编程语言 时间:
2021-01-12 10:44:34
阅读次数:
0
//wstring转string std::string wstring2string(IN std::wstring& wstr) { std::string result; //获取缓冲区大小,并申请空间,缓冲区大小事按字节计算的 int len = WideCharToMultiByte(CP ...
分类:
编程语言 时间:
2021-01-11 10:29:26
阅读次数:
0
double string_to_float(uint8_t *str){ uint8_t i,j,k,negative=0; #define s_temp str double result=0.0,result_1=0.0; for(i=0;i<10;i++) { j=str[i]; if(j= ...
分类:
其他好文 时间:
2021-01-11 10:28:36
阅读次数:
0
Ansible常用模块 ansible常用模块使用详解 ansible常用模块有: ping yum template copy user group service raw command shell script ansible常用模块raw、command、shell的区别: shell模块调 ...
分类:
其他好文 时间:
2021-01-08 11:31:37
阅读次数:
0
1.自定义响应结构 /** * 自定义响应结构 */ @Data public class Result { // 响应业务状态 private Integer code; // 响应消息 private String message; // 响应中的数据 private Object data; ...
分类:
编程语言 时间:
2021-01-07 12:12:55
阅读次数:
0
电子口岸抓取实时始数据流程 流程一: 电子口岸调用电商企业接口,通知其上传实时数据,接口参数含有订单ID和SessionID 电商企业响应请求,返回码为1000,告知电子口岸可以上传数据 流程二: 电商企业根据流程一的订单ID和SessionID生成上报数据 将数据通过websocket发送给uke ...