- 博客(7)
- 资源 (3)
- 收藏
- 关注
原创 使用order by charindex 在Sql Server 的where in中保持顺序
当查询in中的内容为字符串类型时,CHARINDEX 对应的排序规则 name中的值只需一个引号。charindex 函数要求有 2 到 3 个参数。‘xxx’,'王菲 ','bbb')
2023-05-15 19:11:21 277 1
原创 Java 数学运算专栏
1.int 整数除法运算int x=19/2;x=?在java中,整数之间的除法运算,不管小数位有多少位,小数是几,统统舍弃,只返回整数位数字!x=9
2021-06-08 20:09:34 101
原创 java 算法学习 罗马数字转整数
1. switch -case 值匹配2.sum+= a 等价于 sum= sum+a3.字符串中前一个值与后一个值比较: 1. 取出第一个值 2. for循环依次取值 从第二个值开始 3.判断 逻辑赋值 4.将后一位值赋值给前一位 5.统计和加上最后一位数值 public int romanToInt(String s) { //统计数值转换的值 int sum = 0; //取第一个罗马数...
2021-01-10 10:36:43 132
原创 Java 判断
switch case 值匹配 switch(表达式){ case 值1: 表达式的值和 值1匹配上了,需要执行的代码; break; case 值2: 表达式的值和 值2匹配上了,需要执行的代码; break; case 值3: 表达式的值和 值3匹配上了,需要执行的代码; break; default: 如果表达式的值和以上的case后面的值都没有匹配上,那么就执行...
2021-01-10 09:40:28 123
原创 Python 求超增 (数字序列中每个数字大于之前所有数字的总和)
当且仅当序列中的每个数字都严格大于序列中所有在其之前的所有数字的总和时,才将数字序列称为超增。序列中的第一个元素可以是任何数字。例如,序列1,3,5,11,21和-2,1,2都超级增加;顺序1,3,5,7,19在增加,但不是超级增加。要求:编写一个super_increasing(seq)将一个数字序列作为参数的函数,如果该序列是超增的,则返回True,否则返回False。测试用例:def test_super_increasing(): """ This function
2020-11-09 10:58:21 631
原创 python 数组的嵌套深度 递归求解
A list that contains lists is sometimes called nested. We define the nesting depth of a list as follows:A list that does not contain any list has a nesting depth of zero A list that contains lists has a nesting depth equal to the maximum nesting depth o
2020-11-08 12:21:39 1328
原创 python 浅拷贝和深拷贝 关于在循环中使用list.append(),插入数据被覆盖的问题
关于Python中,循环后使用list.append(),数据被覆盖的问题例子:def make_list_of_lists(n): the_list = [] sublist = [] while n > 0: the_list.append(sublist) sublist.append(len(sublist) + 1) n = n - 1 return the_list测试用例:print(...
2020-11-06 13:58:08 636
bootstrap fileibput
2018-06-19
购物网站前台模板
2018-06-19
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人