import java.util.Arrays; public class QuickSort { public static void main(String[] args) { int[] arr = {-9,78,567,23,0,70,78 -1,900, 4561}; quickSort( ...
分类:
编程语言 时间:
2020-07-31 18:02:43
阅读次数:
83
Arrays工具类中有个静态的方法:1、publicstatic<T>ListL<T>asList(T...a):返回指定数组支持的固定大小的列表2、返回的集合不能做曾删改操作,可以做修改操作List接口中有个静态方法1、publicstatic<E>List<E>of(E...element):返回包含任意数量的不可变列表Set接口中有个静态方法2
分类:
编程语言 时间:
2020-07-31 01:00:51
阅读次数:
76
Zhang3 a participant of IPhO (Immortal Physics Olympiad). The $0^\mathrm$ problem in the contest is as follows. There are two balls that weigh \(a\) k ...
分类:
其他好文 时间:
2020-07-30 22:15:00
阅读次数:
110
题目说明: 已知两个矩阵a,b,求a*b 分析: 结果矩阵等于 a的每一行的元素,分别乘b的每一列的元素在相加; 前提:a的列=b的行 矩阵a2*2 1 2 1 -1 * 矩阵b2*3 1 2 -3 -1 1 2 结果矩阵C2*3 -1 4 1 2 1 -5 我的代码主要分为一下几个模块: 1.从键 ...
分类:
其他好文 时间:
2020-07-30 21:47:07
阅读次数:
56
Collections工具类 Collections是一个操作Set、List和Map等集合的工具类(类似于Arrays操作数组的工具类) 提供了一系列的静态方法(static) 排序操作的相关方法 reverse(List) 反转List中元素的顺序 List list = new ArrayLi ...
分类:
其他好文 时间:
2020-07-30 01:24:21
阅读次数:
67
Suppose Andy and Doris want to choose a restaurant for dinner, and they both have a list of favorite restaurants represented by strings. You need to h ...
分类:
其他好文 时间:
2020-07-29 15:41:09
阅读次数:
86
power_two.cpp内容如下: #include <iostream> using namespace std; bool is_power_of_two(unsigned int n) { return (n && !(n & (n-1))); } int main(int argc, ch ...
分类:
其他好文 时间:
2020-07-29 15:07:26
阅读次数:
62
Arrays类 基本概念: 该类包含用于操作数组的各种方法(如排序和搜索)。 Arryas类中的对象都是用static修饰的静态方法,在使用的时候可以直接用类名调用,而**"不用"使用对象来调用**(注意:是“不用”而不是“不能”) 如果指定的数组引用为空,则该类中的方法都抛出一个NullPoint ...
分类:
其他好文 时间:
2020-07-29 12:39:19
阅读次数:
66
8)数组的排序 int [ ] arr = {23,64,2,37,43,67,1}; Arrays.sort(arr); for (int i = 0; i<arr.length; i++){ System.out.println(arr[i]); } 方法:(函数、过程) 1)方法用于封装一段特 ...
分类:
编程语言 时间:
2020-07-28 22:45:54
阅读次数:
69
Given two strings s1, s2, find the lowest ASCII sum of deleted characters to make two strings equal. Example 1: Input: s1 = "sea", s2 = "eat" Output: ...
分类:
其他好文 时间:
2020-07-28 14:45:21
阅读次数:
310