码迷,mamicode.com
首页 >  
搜索关键字:col    ( 36678个结果
c .16.链接,比较代码讲解,分治策略与递归
1.链接代码 char* my_strcat(char* dist, const char* src) { if (dist == nullptr || src == nullptr) { return dist; } char* cp = dist; while (*cp != '\0') { + ...
分类:其他好文   时间:2021-04-05 11:42:36    阅读次数:0
Sigrity中查看S参数
工具软件:Sigrity 2019/PowerSI 1. 新建一个"Model Extraction"工作流程 2. 加载S参数 3. 增加S21插入损耗曲线(先介绍单端,再差分) 4. 观察S21 5. 将纵坐标单位改为dB 6. Mark标记 以下是差分的查看方式,只是要设置差分,所以只指出差分 ...
分类:其他好文   时间:2021-04-02 13:29:42    阅读次数:0
跳台阶
解题思路:通过找规律,发现其实这也是斐波那契数列 # -*- coding:utf-8 -*- class Solution: def jumpFloor(self, number): #n=1 f(n)=1 #n=2,11,2, f(n)=2 #n=3,111,12,21 f(n)=3 #n=4, ...
分类:其他好文   时间:2021-04-02 13:00:23    阅读次数:0
double比较大小
BigDecimal data1 = new BigDecimal("1"); BigDecimal data2 = new BigDecimal("0.01"); if (data1.compareTo(data2) < 0) { System.out.println("第二位数大!"); } i ...
分类:其他好文   时间:2021-04-01 13:37:22    阅读次数: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
form表单提交时,不会提交disabled属性的input标签
<form role="form" class="form-horizontal" action="{:url('xxx/xxx')}" method="post"> <div class="row"> <div class="col-sm-4"> <div class="form-group dr ...
分类:其他好文   时间:2021-04-01 12:59:43    阅读次数:0
leetcode 116 填充每个节点的下一个右侧节点指针
/* // Definition for a Node. class Node { public: int val; Node* left; Node* right; Node* next; Node() : val(0), left(NULL), right(NULL), next(NULL) { ...
分类:其他好文   时间:2021-03-31 12:27:25    阅读次数:0
【JVM常用参数解析】
TODO nohup bin/./ad-show-frequence-record-service26250 -server -Xmx4g -Xms4g -XX:MetaspaceSize=512m -Xss256k -server -Djava.security.egd=file:/dev/./u ...
分类:其他好文   时间:2021-03-31 12:21:40    阅读次数:0
时间戳转换成成标准时间
1 function timeChange(time) { 2 var date = new Date(time);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 3 var Y = date.getFullYear() + '-'; 4 var M = (date.getMont ...
分类:其他好文   时间:2021-03-31 12:19:55    阅读次数:0
后台查出来的数组显示在页面
HTML页面: <div class=" row t1" style="text-align:center;"> <div class="form-group col-xs-2 col-md-offset-1"> <div class="panel panel-danger" style="back ...
分类:编程语言   时间:2021-03-31 12:12:55    阅读次数:0
36678条   上一页 1 ... 43 44 45 46 47 ... 3668 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!