笔试:一些怕忘掉的基础东西
平方函数:Math.pow(a,b)
new一个数组:
int[] index=new int[3];//已知容量 int[] index={2,3,4};//已知数据
int[][] index2=new int[2][3];//二维数组
new一个arraylist
List<String> list=new ArrayList<>(); List<HashSet<String>> list1=new ArrayList<>();
int-字符串互转
Integer.parseInt("2");
System.out.println(String.valueOf(2));
数组-list互转
list转为数组:toarray方法
这样使用才是带泛型的
排序,反转,二分查找
Arrays和Collections工具类中的方法
字符串和字符数组转换
char[] charArray=ass.toCharArray();
栈和队列这两种数据结构
栈:后进先出
队列:先进先出
Queue<String> queue=new LinkedList<>(); queue.add("2"); queue.poll();
Stack<String> strings=new Stack<>();
strings.push("")
strings.pop();