numb

byte[]合并

匿名 (未验证) 提交于 2019-12-03 00:04:02
直接上代码吧。 /** * 合并两个byte数组 * 将pByteA的前numA和pByteB的前numB合并 * @param pByteA * @param numA * @param pByteB * @param numB * @return */ public static byte[] getMergeBytes(byte[] pByteA, int numA, byte[] pByteB, int numB){ // int aCount = pByteA.length; // int bCount = pByteB.length; byte[] b = new byte[numA+numB]; for(int i=0;i<numA;i++){ b[i] = pByteA[i]; } for(int i=0;i<numB;i++){ b[numA + i] = pByteB[i]; } return b; } 当然上面是比较笨的方法,也可以用System.arraycopy方法来实现。 转载于:https://my.oschina.net/u/860952/blog/549237 来源:51CTO 作者: chouchou8654 链接:https://blog.csdn.net/chouchou8654/article/details/100807765

flask使用get请求传递参数

匿名 (未验证) 提交于 2019-12-02 23:38:02
#后端程序 from flask import Flask,request app = Flask(__name__) @app.route('/loginsss') def hello_world(): numb = int(request.args.get('numb')) numb += 1 return str(numb) if __name__ == '__main__': app.run() #前段程序 import requests url = 'http://127.0.0.1:5000/loginsss' params = { 'numb':'4', } res = requests.get(url=url,params=params) print(res.text) 文章来源: https://blog.csdn.net/qq_44862918/article/details/91041383

byte[]合并

亡梦爱人 提交于 2019-11-29 12:20:41
直接上代码吧。 /** * 合并两个byte数组 * 将pByteA的前numA和pByteB的前numB合并 * @param pByteA * @param numA * @param pByteB * @param numB * @return */ public static byte[] getMergeBytes(byte[] pByteA, int numA, byte[] pByteB, int numB){ // int aCount = pByteA.length; // int bCount = pByteB.length; byte[] b = new byte[numA+numB]; for(int i=0;i<numA;i++){ b[i] = pByteA[i]; } for(int i=0;i<numB;i++){ b[numA + i] = pByteB[i]; } return b; } 当然上面是比较笨的方法,也可以用System.arraycopy方法来实现。 转载于:https://my.oschina.net/u/860952/blog/549237 来源: https://blog.csdn.net/chouchou8654/article/details/100807765

LeetCode:287. Find the Duplicate Number

夙愿已清 提交于 2019-11-29 10:15:41
一、问题描述 Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate number must exist. Assume that there is only one duplicate number, find the duplicate one. Example 1: Input: [1,3,4,2,2] Output: 2 Example 2: Input: [3,1,3,4,2] Output: 3 Note: You must not modify the array (assume the array is read only). You must use only constant, O (1) extra space. Your runtime complexity should be less than O ( n 2). There is only one duplicate number in the array, but it could be repeated more than once. 二、解题思路 使用set(因为涉及到查找

python切片

你离开我真会死。 提交于 2019-11-26 16:26:07
numb = [1,2,3,4,5,6,7] print(numb[1::2]) #如果步长为正数,那么第一个索引指定的元素位置必须在,第二个索引指定的元素位置的之前 print(numb[-3:0]) # 这个就是空列表,第一个元素位置在第二个元素位置后面,步长是正数 print(numb[-3:0:-1]) #步长为负数,第一个元素位置,必须在第二个元素位置后面 print(numb[1:5:-1]) #空列表 来源: https://www.cnblogs.com/tarzen213/p/11326471.html

bootstrap-table自定义列排序

匆匆过客 提交于 2019-11-26 06:48:24
bootstrap-table要实现排序的功能需要在给定的列添加两个属性 1:sortable(配置项)/data-sortable(html中的属性) 为true 2:如果列表中的数据是单纯的数值则使用sortName(配置项)/data-sort-name(html中的属性)来配置根据表中的那列数据进行排序即可。如果列表中的数据为非数值,则需要通过sorter(配置项)/data-sorter(html中的属性)来自定义排序规则 由于开发中使用了"|"的字符,我写了的自定义排序,代码如下 /** *自定义列排序 * @param valA * @param valB * @returns {number|*} */ function customColumnSort(valA,valB){ console.log(valA) let valAStr = String(valA); let valBStr = String(valB); if(valAStr.indexOf("|")>0) { valA = +valAStr.split("|")[0]; valB = +valBStr.split("|")[0]; } return compareNumber(valA,valB); } /** * 比较值的大小 * 如果numA,numB都是非数值,则返回0, *