// 字典树的左儿子右兄弟法 // 相同长度则为 strlen(str)*2 + 2 不同则为 公共前缀 + 1 #include<bits/stdc++.h> #define rep(i, n) for(int i=0;i!=n;++i) #define per(i, n) for(int i=n ...
                            
                            
                                分类:
其他好文   时间:
2020-09-17 14:15:04   
                                阅读次数:
28
                             
                    
                        
                            
                            
                                
                    case when info.LEASE_WAY='OPERATING-LEASE' then '经租' when info.LEASE_WAY='BACK-LEASE' then '回租' when info.LEASE_WAY='LEASE' then '直租' else '一次性买断' end ...
                            
                            
                                分类:
数据库   时间:
2020-09-17 12:37:45   
                                阅读次数:
34
                             
                    
                        
                            
                            
                                
                    We know that when we create a new UI5 control instance, we can explicitly pass an id into constructor. In this case, developer takes responsibility to ...
                            
                            
                                分类:
其他好文   时间:
2020-09-15 20:54:51   
                                阅读次数:
29
                             
                    
                        
                            
                            
                                select循环####*selectvariableinlist;do循环体doneselect主要用于创建菜单,并显示ps3提示符用户输入数字执行相应命令用户输入的数字保存在变量REPLY中select是无限循环,需要breake命令退出循环,或者exit命令终止select通常和case一起使用与for循环类似,可以省略inlist,此时使用位置参量#!/bin/bash########PS
                            
                            
                                分类:
其他好文   时间:
2020-09-11 16:03:32   
                                阅读次数:
39
                             
                    
                        
                            
                            
                                不知道何时开始,很多程序员喜欢用ToLower,ToUpper去实现忽略大小写模式的字符串相等性比较,有可能这个习惯是从别的语言引进的,大胆猜测下是JS,为了不引起争论,我指的JS是技师的意思~一:背景1.讲故事在我们一个订单聚合系统中,每一笔订单都会标注来源,比如JD,Taobao,Etao,Shopex等等一些渠道,UI上也提供高级配置输入自定义的订单来源,后来客户反馈输入xxx查询不出订单,
                            
                            
                                分类:
其他好文   时间:
2020-09-10 22:54:56   
                                阅读次数:
48
                             
                    
                        
                            
                            
                                1。 自己准备项目和环境 2。 Jenkins执行shell命令, 使用pytest执行项目,并且生成allure测试报告(allure-reports) pytest --reruns 2 testCase/case/mainFlow --alluredir=allure-reports 这样就生 ...
                            
                            
                                分类:
其他好文   时间:
2020-09-03 16:48:28   
                                阅读次数:
64
                             
                    
                        
                            
                            
                                数据类型: 整数 byte、short、int、long 四种基本数据类型表示整数,需要注意的是 long 类型,使用 long 修饰的变量需要在数值后面加上 L 或者 l,比如 long num = 1L;,一般使用大写 L,为了避免小写 l 与数值 1 混淆。 浮点数 float 和 doubl ...
                            
                            
                                分类:
编程语言   时间:
2020-09-02 16:52:38   
                                阅读次数:
51
                             
                    
                        
                            
                            
                                
                    Axios 说明 Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中。 安装 npm 中安装 npm install axios 使用 cdn: <script src="https://unpkg.com/axios/dist/axios.min.js" ...
                            
                            
                                分类:
移动开发   时间:
2020-09-02 16:47:48   
                                阅读次数:
68