码迷,mamicode.com
首页 >  
搜索关键字:color    ( 180498个结果
c语言初学者所需要练习的9*9乘法表
![](https://s4.51cto.com/images/blog/202011/08/94e274cdfac406353311d744de7c78ab.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3p
分类:编程语言   时间:2020-11-16 13:01:12    阅读次数:6
java逻辑运算
![](https://s4.51cto.com/images/blog/202011/08/2b7938688fd3ee705b65ccf171599974.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3p
分类:编程语言   时间:2020-11-13 13:21:10    阅读次数:31
html学习之radio标签——小白
<div class="form-style-agile" style="color: white;"> <input type="radio" name="userrole" value="管理员" />管理员 <input type="radio" name="userrole" value=" ...
分类:Web程序   时间:2020-11-13 13:04:47    阅读次数:16
Acwing 837. 连通块中点的数量 (裸题,并查集求连通块中点数目)
地址:https://www.acwing.com/problem/content/839/ 只是记录个板子,不做解析。 #include<cstdio> #include<cstring> #include<vector> #include<algorithm> #include<iostream ...
分类:Windows程序   时间:2020-11-13 12:55:15    阅读次数:26
IO流之递归
1.递归 指在当前方法内调用自己的现象 2.直接递归是自己调用自己 3.间接递归,A调用B,B调用C,C调用A 注:递归一定要有条件限定,保证递归能够停止下来,否则会发生栈内存溢出。 在递归中虽然有限定条件,但是递归次数不能太多。否则也会发生栈内存溢出 4.递归打印文件下所有子目录中的文件 1. 指 ...
分类:其他好文   时间:2020-11-13 12:54:50    阅读次数:5
非交互式批量传递公钥
#!/binbash rpm -qa |grep expect > /dev/null #判断是否已下载expect 若没有则下载该服务 a=`echo $?` [ ! $a -eq 0 ] && yum -y install expectif [ ! -e /root/.ssh/id_rsa.pu ...
分类:其他好文   时间:2020-11-13 12:52:19    阅读次数:9
c++获取浮点数随机数
#include <random> #include <iostream> int main() { std::random_device rd; //Will be used to obtain a seed for the random number engine std::mt19937 ge ...
分类:编程语言   时间:2020-11-13 12:42:56    阅读次数:7
二分图(染色法)
importjava.util.Scanner;publicclassMain{privatestaticintindex=0;privatestaticint[]lastEdge;privatestaticint[]end;privatestaticint[]previousEdge;privatestaticint[]color;privatestaticintn;privatestatici
分类:其他好文   时间:2020-11-12 14:07:57    阅读次数:8
接口自动化测试:yaml文件中变量替换
在做接口、UI自动化的时候,我们可以用yaml文件来管理测试用例的步骤、数据,因为每次测试的数据需要动态变换,所以yaml文件中相关参数可能需要用变量表示。那么,我们怎么进行变量的传值呢? 这里可以用到字符串的模板替换功能,官方文档:https://docs.python.org/zh-cn/3/l ...
分类:其他好文   时间:2020-11-11 16:37:45    阅读次数:8
LeetCode:236 二叉树的最近公共祖先
class Solution { private TreeNode res = null; public boolean dfs(TreeNode root,TreeNode p,TreeNode q){ if(root==null){ return false; } boolean lchild ...
分类:其他好文   时间:2020-11-11 16:27:40    阅读次数:8
180498条   上一页 1 ... 97 98 99 100 101 ... 18050 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!