asd

asd

血红的双手。 提交于 2019-12-01 02:33:24
asd 来源: https://www.cnblogs.com/lijiulin-123/p/11648364.html

JS中正则表达式应用

别来无恙 提交于 2019-12-01 01:54:23
  判断字符串是否含有中文字符:     var pattern = /.*[\u4e00-\u9fa5]+.*$/; var str = "asd按时"; console.log(pattern.test(str));   判断字符串是否全为英文: var pattern = new RegExp("^[a-zA-Z]+$"); var str = "asd按时"; console.log(pattern.test(str));   判断字符串中是否含有+、-、*、/运算符: var pattern = /[+*/-]/; var str = "asd按时"; console.log(pattern.test(str));      正则表达式在线生成工具: http://tools.jb51.net/regex/create_reg 来源: https://www.cnblogs.com/Big-Boss/p/11646950.html

asd

安稳与你 提交于 2019-11-29 23:23:54
设(f_i)表示(i)到(1)号点的最短距离,(g_i)表示(i)到(2)号点的最短距离,(s_i)表示(n+1)号点到(i)号点的最短距离,(A=s_1,B=s_2) 根据最短路三角形不等式,(|f_i - A| \leq s_i \leq f_i + A , |g_i - B| \leq s_i \leq g_i + B) 而(s_i)要取到最小值,所以(s_i = \max{|f_i - A| , |g_i - B|}) 所以我们要求的是(\sum\limits_{i=1}^N \max{|f_i - A| , |g_i - B|}),这相当于求一个动点((A,B))到平面上(N)个点((f_i,g_i))的最小切比雪夫距离和。 切比雪夫距离可以转为曼哈顿距离,将坐标((x,y))变为((\frac{x+y}{2} , \frac{x-y}{2})),前者的切比雪夫距离等效于后者的曼哈顿距离。而曼哈顿距离可以直接拆开横纵坐标然后取中位数。 注意:我天真的以为2012年的题不会卡SPFA…… 来源: https://www.cnblogs.com/EndSaH/p/11538435.html

python字典的使用

馋奶兔 提交于 2019-11-28 15:27:26
1 ''' 2 info={ 3 'qwe':'poi', 4 'asd':"lkj", 5 'zxc':"mnb" 6 } 7 print(info)#字典是无序的 8 print(info["qwe"])#输出 9 info['qwe']="QWE"#字典中有,则是修改 改 10 info['dfg']="hgf"#没有就是添加的 增 11 print(info) 12 #del info['asd']#删除 删 13 #info.pop('asd')#删除 14 #info.popitem() #随机删 15 print(info) 16 17 print(info.get('qwe'))# 查 18 19 print('dfg' in info)#判断字典中是否含有dfg 20 ''' 21 22 23 ''' 24 #多级字典的嵌套 25 mover={ 26 'china':{ 27 'qwe':['qwe','rty','yui'], 28 'aaa':['asd','dfg','sad'], 29 'bbb':['kk','gh','dd'] 30 }, 31 'japan':{ 32 '11':['22','345'], 33 '99':['88','56'] 34 }, 35 'usa':{ 36 'ASD':['SSS'], 37 'QWE':['GGG',

回调函数我的理解

邮差的信 提交于 2019-11-27 15:44:29
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title></head><body></body><script> function fun(qwe){ console.log(0) console.log(qwe) qwe(function(zxc){ console.log(2) console.log(zxc) zxc() }) } fun(function(asd){ console.log(1) console.log(asd) asd(function(){ console.log(3) }) })//1、首先把//执行fun时输出0,把// function(asd){// console.log(1)// console.log(asd)// asd(function(){// console.log(3)// }// 为参数传给qwe;这样console.log(qwe)的结果就是上述函数。////2

asd

自闭症网瘾萝莉.ら 提交于 2019-11-27 02:22:06
当我们经常用如下的硬解码方式来配置文件: <bean id="SgtPeppers" class="com.CDDemo.SgtPeppers" p:title="sgt" p:song="Twinkle, twinkle, little start"> <property name="title" value="sgt"/> <property name="song" value="Twinkle, twinkle, little start"/> </bean> 但有时我们需要避免硬解码,需要想要这些值在运行时确定,Spring提供了两种在运行时求值的方式: 属性占位符 Spring表达式语言(SpEL) 1.注入外部的值 ​ 在Spring中,处理外部值得最简单方式就是申明属性源并通过Spring的Enviroment来检索属性.例如: @Configuration @PropertySource("classpath:app.properties") public class ExpressionTest { @Autowired Environment environment; @Test public BlankDisc disc(){ return new BlankDisc( environment.getProperty("disc.title"),

python数据类型

余生长醉 提交于 2019-11-26 23:51:23
什么是数据类型? 计算机不能区分数字和字符的区别,需要我们去告诉他,于是就有了数据类型 数字 int(整型) 在64位系统上,整数的位数为64位,取值范围为2^63~2^63-1,即-9223372036854775808~9223372036854775807 >>> a = 2**64 >>> type(a) <class 'int'> >>> b = 2**60 >>> type(b) <class 'int'> bool() >>>bool() # 无参数时返回False False >>> bool(0) # 0是False False >>> bool(1) True >>> bool(2) True >>> issubclass(bool, int) # bool 是 int 子类 True float (浮点型) 即小数 >>> n = 2.3 >>> type(n) <class 'float'> 字符串(str) 定义 字符串是一个有序的字符的集合,用于存储和表示基本的文本信息,在Python中,加了引号的字符都被认为是字符串! >>> name = "Alex Li" #双引号 >>> age = "22" #只要加引号就是字符串 >>> age2 = 22 #int >>> >>> msg = '''My name is Alex, I am 22

teststsafsdfsdafsdfsdsda

半腔热情 提交于 2019-11-26 11:54:34
在 Word 中建立博客的相关帮助 asd 在 Word 中建立博客的相关帮助 Tes A sdfsd a Sadtdsa Sadfsadfas < configSections > < section name = " RewriterConfig " type = " URLRewriter.Config.RewriterConfigSerializerSectionHandler, URLRewriter " /> configSections > < RewriterConfig > < Rules > < RewriterRule > < LookFor >~/tag/([\w]+)/ LookFor > < SendTo >~/Tags.aspx?Tag=$1 SendTo > RewriterRule > Rules > RewriterConfig > E:\TDDOWNLOAD\InsertFilesSetup.msi 转载于:https://www.cnblogs.com/austinleng/archive/2009/01/29/1381274.html 来源: https://blog.csdn.net/weixin_30492047/article/details/98835894