码迷,mamicode.com
首页 >  
搜索关键字:hdu 1159 common subs    ( 40195个结果
HDU 2089 不要62
状态表示: dp[len][sta]表示当前第len位,上一位为last的情况下满足条件的数的个数。 int f[15][10]; int a[15]; int l,r; int dfs(int len,int last,bool limit) { if(!len) return 1; if(!li ...
分类:其他好文   时间:2021-02-22 12:12:38    阅读次数:0
js点击按钮禁用文本框
<input type="button" value="禁用文本框" id="btn"/> <input type="text" value="" id="txt"/> <script src="common.js"></script> <script> //点击按钮禁用这个文本框 document ...
分类:Web程序   时间:2021-02-22 12:07:15    阅读次数:0
dhcp搭建
[root@op-benchmark-216 ~]# cat /etc/dhcp/dhcpd.conf # dhcpd.conf # # Sample configuration file for ISC dhcpd # # option definitions common to all supp ...
分类:其他好文   时间:2021-02-20 12:34:38    阅读次数:0
.NET FRAMEWORK的知识点
理解 .NET Framework代码的编译 一般App(应用程序)编译过程 .NET App(应用程序)编译过程 2.理解什么是CIL? CIL:在编译使用.NET Framework库的代码时,不是立即创 建专用于操作系统的本机代码,而是把代码编译为通 用中间语言(Common Intermed ...
分类:Web程序   时间:2021-02-20 12:24:41    阅读次数:0
React js 参数传参2(转发)
原文:Passing State & Calling Functions Between Parent & Children in ReactJS Passing state between components is a common use case. Generally, we use a s ...
分类:Web程序   时间:2021-02-20 12:14:04    阅读次数:0
线程池不允许使用Executors去创建,使用Guava ThreadPoolExecutor创建。
package com.JUC; import com.google.common.util.concurrent.ThreadFactoryBuilder; import java.util.concurrent.*; //共享资源 public class SynchronizedExample ...
分类:编程语言   时间:2021-02-20 11:44:41    阅读次数:0
Java 动态拼接sql 放弃xml文件 直接连接jdbc
package com.cn.sdjr.common;import java.util.List;import java.util.Map;public class Config { // 参数名称/参数值/值补充/是否必填/字段类型/是否主键//默认值 / / /F不必填 /F字符串 /F不是主键 ...
分类:数据库   时间:2021-02-19 13:42:40    阅读次数:0
2020 BIT冬训-二分三分快速幂矩阵 L - Decode the Strings HDU - 2371
Problem Description Bruce Force has had an interesting idea how to encode strings. The following is the description of how the encoding is done:Let x1 ...
分类:其他好文   时间:2021-02-19 13:18:41    阅读次数:0
webpack学习04--打包图片资源
1.使用npm下载组件 npm i file-loader -D npm i url-loader -D 2.配置webpack.config.js文件 const { resolve } = require('path'); const HtmlWebpackPlugin = require('h ...
分类:Web程序   时间:2021-02-17 15:09:41    阅读次数:0
二叉树的最近公共祖先--递归解法
来源: https://leetcode-cn.com/problems/lowest-common-ancestor-of-a-binary-tree/solution/er-cha-shu-de-zui-jin-gong-gong-zu-xian-by-leetc-2/ 信息分类: IT/算法 ...
分类:其他好文   时间:2021-02-17 14:40:10    阅读次数:0
40195条   上一页 1 ... 11 12 13 14 15 ... 4020 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!