You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.2 KiB
95 lines
2.2 KiB
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
package codetoanalyze.java.performance;
|
|
|
|
import java.util.Arrays;
|
|
|
|
public class Array {
|
|
|
|
public void array_access_good() {
|
|
float[] radii = new float[8];
|
|
for (int i = 0; i < 4; ++i) {
|
|
radii[i * 2] = radii[i];
|
|
radii[i * 2 + 1] = radii[i] + 1;
|
|
}
|
|
}
|
|
|
|
public void array_access_overrun_bad() {
|
|
float[] radii = new float[8];
|
|
for (int i = 0; i < 4; ++i) {
|
|
radii[i * 2] = radii[i];
|
|
radii[i * 2 + 2] = radii[i] + 1;
|
|
}
|
|
}
|
|
|
|
void array_access_weird_ok(long[] optionNumerators, int length) {
|
|
for (int j = 0; j < length; ++j) {
|
|
if (10 < optionNumerators[j] + 1) {}
|
|
}
|
|
}
|
|
|
|
int binary_search_log(String[] arr) {
|
|
return Arrays.binarySearch(arr, "x");
|
|
}
|
|
|
|
void fill_linear(String[] arr) {
|
|
Arrays.fill(arr, "x");
|
|
}
|
|
|
|
void copyOf_linear(String[] arr) {
|
|
String[] new_arr = Arrays.copyOf(arr, arr.length);
|
|
for (String el : new_arr) {}
|
|
}
|
|
|
|
void copyOf_constant(String[] arr) {
|
|
String[] new_arr = Arrays.copyOf(arr, 10);
|
|
}
|
|
|
|
void init_array_linear() {
|
|
int[] table = new int[256];
|
|
for (int i = 0; i < table.length; ++i) {
|
|
table[i] = i;
|
|
}
|
|
}
|
|
|
|
void fill_big_constant() {
|
|
String[] arr = new String[300];
|
|
Arrays.fill(arr, 0);
|
|
}
|
|
|
|
void sort_array_nlogn(int size) {
|
|
String[] arr = new String[size];
|
|
Arrays.sort(arr);
|
|
}
|
|
|
|
void bsearch_log(int i) {
|
|
String[] arr = new String[i];
|
|
Arrays.binarySearch(arr, "u");
|
|
}
|
|
|
|
String[] gen_and_iter_types(int length) {
|
|
String[] result = new String[length];
|
|
for (int i = 0; i < length; i++) {}
|
|
return result;
|
|
}
|
|
|
|
void call_gen_and_iter_types(int x) {
|
|
String[] r = gen_and_iter_types(x);
|
|
for (int i = 0; i < r.length; i++) {}
|
|
}
|
|
|
|
void call_gen_and_iter_types_linear_FP(int x, int y) {
|
|
String[] r1 = gen_and_iter_types(x);
|
|
String[] r2 = gen_and_iter_types(y);
|
|
for (int i = 0; i < r2.length; i++) {} // should not be infinite execution time
|
|
}
|
|
|
|
void toArray_linear(java.util.ArrayList<String> list) {
|
|
for (int i = 0; i < list.toArray().length; i++) {}
|
|
}
|
|
}
|