搜索结果
查询Tags标签: Array,共有 1590条记录-
排序算法
选择排序1 public class MySelectionSort {2 3 4 public static void main(String[] args) {5 for (int i = 0; i < 100; i++) {6 int[] array = generateRandomArray(10, 10);7 System.out.println("随机数组:" + Arr…
2021/9/20 20:26:52 人评论 次浏览 -
9.19 第二个5题
1.写syn fifo? 2.写ansync fifo? 3.async fifo 的testplan? 4.2分法: Given a non-negative integer x, compute and return the square root of x. Since the return type is an integer, the decimal digits are truncated, and only the integer part of the resul…
2021/9/20 6:06:37 人评论 次浏览 -
9.19 第二个5题
1.写syn fifo? 2.写ansync fifo? 3.async fifo 的testplan? 4.2分法: Given a non-negative integer x, compute and return the square root of x. Since the return type is an integer, the decimal digits are truncated, and only the integer part of the resul…
2021/9/20 6:06:37 人评论 次浏览 -
kotlin学习笔记
1、数组 1、基本数据数组定义(两种方式)第一种方式:var int_array:IntArray = intArrayOf(1, 2, 3)var long_array:LongArray = longArrayOf(1, 2, 3)var float_array:FloatArray = floatArrayOf(1.0f, 2.0f, 3.0f)var double_array:DoubleArray = doubleArrayOf(1.0, …
2021/9/20 6:05:20 人评论 次浏览 -
kotlin学习笔记
1、数组 1、基本数据数组定义(两种方式)第一种方式:var int_array:IntArray = intArrayOf(1, 2, 3)var long_array:LongArray = longArrayOf(1, 2, 3)var float_array:FloatArray = floatArrayOf(1.0f, 2.0f, 3.0f)var double_array:DoubleArray = doubleArrayOf(1.0, …
2021/9/20 6:05:20 人评论 次浏览 -
JSON parse error: Cannot deserialize instance of `java.lang.Long` out of START_ARRAY token;
JSON parse error: Cannot deserialize instance of java.lang.Long out of START_ARRAY token; nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of java.lang.Long out of START_ARRAY token at [Sourc…
2021/9/19 11:36:50 人评论 次浏览 -
JSON parse error: Cannot deserialize instance of `java.lang.Long` out of START_ARRAY token;
JSON parse error: Cannot deserialize instance of java.lang.Long out of START_ARRAY token; nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of java.lang.Long out of START_ARRAY token at [Sourc…
2021/9/19 11:36:50 人评论 次浏览 -
杨辉三角—JAVA
JAVA实现杨辉三角 什么是杨辉三角 杨辉三角,是二项式系数在三角形中的一种几何排列,中国南宋数学家杨辉1261年所著的《详解九章算法》一书中出现。在欧洲,帕斯卡(1623----1662)在1654年发现这一规律,所以这个表又叫做帕斯卡三角形。帕斯卡的发现比杨辉要迟393年,比…
2021/9/18 20:36:28 人评论 次浏览 -
杨辉三角—JAVA
JAVA实现杨辉三角 什么是杨辉三角 杨辉三角,是二项式系数在三角形中的一种几何排列,中国南宋数学家杨辉1261年所著的《详解九章算法》一书中出现。在欧洲,帕斯卡(1623----1662)在1654年发现这一规律,所以这个表又叫做帕斯卡三角形。帕斯卡的发现比杨辉要迟393年,比…
2021/9/18 20:36:28 人评论 次浏览 -
JavaScript算法---排序(计数排序)【6】
该算法于1954年由 Harold H. Seward提出,通过计数将时间复杂度降到了O(N+k)。计数排序分布式排序 原理:需要创建一个临时数组,存放出现的次数。等所有元素都计数完成后,迭代临时数组构建排序后的结果。function countingSort(array) {if (array.length < 2) {// 如…
2021/9/18 17:07:18 人评论 次浏览 -
JavaScript算法---排序(计数排序)【6】
该算法于1954年由 Harold H. Seward提出,通过计数将时间复杂度降到了O(N+k)。计数排序分布式排序 原理:需要创建一个临时数组,存放出现的次数。等所有元素都计数完成后,迭代临时数组构建排序后的结果。function countingSort(array) {if (array.length < 2) {// 如…
2021/9/18 17:07:18 人评论 次浏览 -
JavaScript——内置对象
介绍JavaScript内置一些对象供直接调用定义1. Math对象 //不需要实例化Math.random():伪随机数,[0,1) 。可以使用 Math.random() * 100 = [0,100);Math.round():把数值四舍五入成整数Math.max(a,b,c,....):获取参数内的最大值2. Date对象 //需要实例化let mydate =…
2021/9/18 9:04:54 人评论 次浏览 -
JavaScript——内置对象
介绍JavaScript内置一些对象供直接调用定义1. Math对象 //不需要实例化Math.random():伪随机数,[0,1) 。可以使用 Math.random() * 100 = [0,100);Math.round():把数值四舍五入成整数Math.max(a,b,c,....):获取参数内的最大值2. Date对象 //需要实例化let mydate =…
2021/9/18 9:04:54 人评论 次浏览 -
C practice(二)
(1)codeup 1934 在一段code 中找X #include <stdio.h> #include <string.h> const int Max=200; int main() { int num; int Array[num];//定义一个数组 memset(Array,0,sizeof(Array));//初始化while(scanf("%d",&n) != …
2021/9/17 23:08:11 人评论 次浏览 -
C practice(二)
(1)codeup 1934 在一段code 中找X #include <stdio.h> #include <string.h> const int Max=200; int main() { int num; int Array[num];//定义一个数组 memset(Array,0,sizeof(Array));//初始化while(scanf("%d",&n) != …
2021/9/17 23:08:11 人评论 次浏览