Sub Sort_Sheets() Dim sCount As Integer, I As Integer, R As Integer ReDim Na(0) As String sCount = Sheets.Count For I = 1 To sCount ReDim Preserve Na( ...
分类:
编程语言 时间:
2021-04-27 14:27:14
阅读次数:
0
与不含重复数字的全排列相比,在于: 排序; 添加对上一数字的判断 class Solution { LinkedList<List<Integer>> ans=new LinkedList<>(); LinkedList<Integer> path=new LinkedList<>(); boole ...
分类:
其他好文 时间:
2021-04-26 13:15:08
阅读次数:
0
ThreadLocal通过Thread.threadlocals保存ThreadLocal的副本,但是ThreadLocal变量在多线程情况下仍然是不安全的。 class MyClass{ private Integer value; public MyClass(){ } public MyCla ...
分类:
其他好文 时间:
2021-04-22 15:36:52
阅读次数:
0
关系运算符:=、!=、<>、>=、<= 区间:between A and B -> [A,B] And:并且,和。 Or:或者 Is null:空 Not:否,非 Is not null:非空 In:在什么里面 ...
分类:
其他好文 时间:
2021-04-21 11:43:57
阅读次数:
0
输出小于输入值的所有正偶数。 1、while语句 #include <stdio.h> int main(void) { int i = 2, j; puts("please input an integer."); printf("j = "); scanf("%d", &j); while ( ...
分类:
编程语言 时间:
2021-04-20 15:40:50
阅读次数:
0
/** 硬币找零:三个硬币面值2,5,7,希望用最少的硬币数拼出27* 分析:用动态规划解* f[X]:最少的硬币拼出X,设最后一步用a拼出了27,a可以是2/5/7,那么* f[27]=f[27-a]+1,因为不知道a具体是多少,所以,f[27]=min{f[27-2]+1,f[27-5]+1,f ...
分类:
其他好文 时间:
2021-04-16 12:02:09
阅读次数:
0
[]byte 和 string 的区别 这两个都经常用于初始化字符串,而且经常互相转换,很疑惑 []byte 究竟是什么 声明的方式有2种:[]byte("hello world") 或者 []byte{97,98} 注意这里是ASCII码其实等价于 []byte("ab") 打印看看: packa ...
分类:
其他好文 时间:
2021-04-16 11:52:53
阅读次数:
0
众所周知 对于基本类型而言,equals和==没有区别,但对于引用类型 equals比较的是内容(类型+值),==比较的是地址 一开始我以为像Integer这种包装类由于是引用类型,应该用equals比较 直到... Integer a=20; Integer b=20; System.out.pr ...
分类:
其他好文 时间:
2021-04-15 12:17:29
阅读次数:
0
package com.example.query; import java.io.Serializable; public class UserQuery implements Serializable { private Integer id; private String username; ...
Description: A peak element is an element that is strictly greater than its neighbors. Given an integer array nums, find a peak element, and return it ...
分类:
其他好文 时间:
2021-04-13 11:52:46
阅读次数:
0