码迷,mamicode.com
首页 >  
搜索关键字:ret    ( 30742个结果
vue项目接收二进制流展示表格
1.获取后端返回的二进制流//安装xlsx插件 npm install xlsx -s //在页面引入xlsx impory XLSX from 'xlsx' //如果是axios请求,responseType需要设置为arraybuffer //获取并处理返回的信息 let data = new ...
分类:其他好文   时间:2021-04-02 12:55:54    阅读次数:0
letcode 两个数组求交集,哈希解法
class Solution(object): def intersect(self, nums1, nums2): if len(nums1) > len(nums2): return self.intersect(nums2, nums1) m = collections.Counter() f ...
分类:编程语言   时间:2021-04-01 13:42:22    阅读次数:0
递归函数 和 匿名函数
递归函数 函数的递归调用: 是函数嵌套调用的一种特殊形式。 具体指的是在调用一个函数的过程中又直接或者间接的调用了自己,称之为函数的递归调用。 函数的递归调用就是一个循环的过程,用函数来实现循环 def f1(): print('from f1') f1() f1() # 函数默认调用1000次 d ...
分类:其他好文   时间:2021-04-01 13:41:29    阅读次数:0
LeetCode——350. 两个数组的交集 II
题目描述 题干: 给定两个数组,编写一个函数来计算它们的交集。 示例1: 输入:nums1 = [1,2,2,1], nums2 = [2,2] 输出:[2,2] 示例2: 输入:nums1 = [4,9,5], nums2 = [9,4,9,8,4] 输出:[4,9] 题解思路 依稀记得两个数组的 ...
分类:编程语言   时间:2021-04-01 13:39:19    阅读次数:0
数组判断全零的一些代码研究
最精简版本 int check_data(int *array, int n) { while(n--) if (*array++ != 0x00) return 0; return 1; } 返回1 array数组全零,否则正常非全零。 int check_data(int *array) { w ...
分类:编程语言   时间:2021-04-01 13:15:24    阅读次数:0
3.30刷题记录 Triangle
动态规划题,根据动态规划,选择最短的路径 class Solution { public: int minimumTotal(vector<vector<int>>& triangle) { int n = triangle.size(); vector<int> f(n); f[0] = tria ...
分类:其他好文   时间:2021-03-31 12:26:06    阅读次数:0
关于kratos的底层赋值参考
package main import ( "fmt" "time" ) func main() { s := NewServices( SetName("peter"), SetTimeout(time.Second*5), ) fmt.Println("name:", s.conf.Name) ...
分类:其他好文   时间:2021-03-31 12:16:53    阅读次数:0
ElementUI 表单校验 有内容仍然会提醒
参照:elementUI官方文档 https://element.eleme.cn/#/zh-CN/component/form 常见错误,几个要点: <template>中 1.<el-form>标签中, model 和 rules属性 未填 2.<el-form-item>标签中,prop属性 ...
分类:其他好文   时间:2021-03-30 13:56:39    阅读次数:0
Shell函数
Shell函数 linux shell 可以用户定义函数,然后在shell脚本中可以随便调用。 shell中函数的定义格式如下: [ function ] funname [()] { action; [return int;] } 说明: 1、可以带function fun() 定义,也可以直接f ...
分类:系统相关   时间:2021-03-30 13:46:15    阅读次数:0
如何看待malloc产生内存碎片
上代码直接研究: int main() { int *heap_d; int *heap_e; int *heap_f; heap_d = (int *)malloc(10); heap_e = (int *)malloc(10); printf("The d address is %p\n",he ...
分类:其他好文   时间:2021-03-30 13:44:13    阅读次数:0
30742条   上一页 1 ... 31 32 33 34 35 ... 3075 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!