current position:Home>(don't underestimate arrays) play with arrays of data structures, handwritten dynamic arrays (Java)
(don't underestimate arrays) play with arrays of data structures, handwritten dynamic arrays (Java)
2022-01-26 22:22:58 【Everything goes with fate ~~~】
Array with generic class
import java.util.Arrays;
public class Array<E> {
private E[] data;
private int size;
// Pass in capacity Initialize the capacity of the array
public Array(int capacity) {
// Generic classes cannot be instantiated directly , adopt Object Cast
data = (E[])new Object[capacity];
size = 0;
}
// No arguments structure , The initial capacity of the default array is 10
public Array() {
this(10);
}
// Returns the number of elements in the array
public int getSize() {
return size;
}
// Get the capacity of the array
public int getCapacity() {
return data.length;
}
// Determine whether the array is empty
public boolean isEmpty() {
return size == 0;
}
// Add an element after all elements
public void addLast(E e) {
/** * if (size == data.length) { * throw new IllegalArgumentException("Array is full."); * } * data[size] = e; * size ++ ; */
add(size, e);
}
// Add an element before all elements
public void addFirst(E e) {
add(0, e);
}
// In the index Insert a new element at a location
public void add(int index, E e) {
if (size == data.length) {
throw new IllegalArgumentException("Array is full.");
}
if (index < 0 || index > size)
throw new IllegalArgumentException("Require index >= 0 and index <= size");
for (int i = size - 1; i >= index; i -- ) {
data[i + 1] = data[i];
}
data[index] = e;
size ++ ;
}
// Query whether the array contains elements e
public boolean contains(E e) {
for (int i = 0; i < size; i ++ ) {
if (data[i].equals(e))
return true;
}
return false;
}
// Find the elements in the array e The index , If it doesn't exist , Then return to -1
public int find(E e) {
for (int i = 0; i < size; i ++ ) {
if (data[i].equals(e))
return i;
}
return -1;
}
// Delete the elements of the specified index , Return deleted elements
public E remove(int index) {
if (index < 0 || index >= size)
throw new IllegalArgumentException("Index is illegal");
E res = data[index];
for (int i = index + 1; i < size; i ++ ) {
data[i - 1] = data[i];
}
size -- ;
data[size] = null;
return res;
}
// Delete first element , Return deleted elements
public E removeFirst() {
return remove(0);
}
// Delete tail element , Return deleted elements
public E removeLast() {
return remove(size - 1);
}
// Remove elements e, If it does not exist , Then the meal returns -1
public void removeElement(E e) {
int index = find(e);
if (index != -1)
remove(index);
}
// Get index location as index The elements of
public E get(int index) {
if (index < 0 || index >= size)
throw new IllegalArgumentException("Index is illegal");
return data[index];
}
// Change the index position to index The elements of
public void set(int index, E e) {
if (index < 0 || index >= size)
throw new IllegalArgumentException("Index is illegal");
data[index] = e;
}
@Override
public String toString() {
StringBuilder res = new StringBuilder();
res.append(String.format("Array: size = %d , capacity = %d\n", size, data.length));
res.append("[");
for (int i = 0; i < size; i ++ ) {
res.append(data[i]);
if (i != size - 1)
res.append(", ");
}
res.append("]");
return res.toString();
}
}
Test the effect
public class Student {
private String name;
private double score;
public Student(String name, double score) {
this.name = name;
this.score = score;
}
public Student() {
}
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", score=" + score +
'}';
}
public static void main(String[] args) {
Array<Student> arr = new Array<>();
arr.addLast(new Student(" Zhang San ", 33));
arr.addLast(new Student(" Li Si ", 66));
arr.addLast(new Student(" Wang Wu ", 88));
System.out.println(arr);
}
}
Dynamic array with automatic capacity expansion
The principle of capacity expansion : When the number of array elements is greater than the capacity of the array , Create a larger array , Copy the original array to the newly created array , Point the reference of the array to the new array , Old arrays will be recycled by the garbage collector .
import java.util.Arrays;
public class Array<E> {
private E[] data;
private int size;
// Pass in capacity Initialize the capacity of the array
public Array(int capacity) {
// Generic classes cannot be instantiated directly , adopt Object Cast
data = (E[])new Object[capacity];
size = 0;
}
// No arguments structure , The initial capacity of the default array is 10
public Array() {
this(10);
}
// Returns the number of elements in the array
public int getSize() {
return size;
}
// Get the capacity of the array
public int getCapacity() {
return data.length;
}
// Determine whether the array is empty
public boolean isEmpty() {
return size == 0;
}
// Add an element after all elements
public void addLast(E e) {
/** * if (size == data.length) { * throw new IllegalArgumentException("Array is full."); * } * data[size] = e; * size ++ ; */
add(size, e);
}
// Add an element before all elements
public void addFirst(E e) {
add(0, e);
}
// In the index Insert a new element at a location
public void add(int index, E e) {
if (index < 0 || index > size)
throw new IllegalArgumentException("Require index >= 0 and index <= size");
if (size == data.length) {
// Call the expansion function
resize(2 * data.length);
}
for (int i = size - 1; i >= index; i -- ) {
data[i + 1] = data[i];
}
data[index] = e;
size ++ ;
}
// Expansion function
private void resize(int newCapacity) {
E[] newData = (E[])new Object[newCapacity];
for (int i = 0; i < size; i ++ )
newData[i] = data[i];
data = newData;
}
// Query whether the array contains elements e
public boolean contains(E e) {
for (int i = 0; i < size; i ++ ) {
if (data[i].equals(e))
return true;
}
return false;
}
// Find the elements in the array e The index , If it doesn't exist , Then return to -1
public int find(E e) {
for (int i = 0; i < size; i ++ ) {
if (data[i].equals(e))
return i;
}
return -1;
}
// Delete the elements of the specified index , Return deleted elements
public E remove(int index) {
if (index < 0 || index >= size)
throw new IllegalArgumentException("Index is illegal");
E res = data[index];
for (int i = index + 1; i < size; i ++ ) {
data[i - 1] = data[i];
}
size -- ;
data[size] = null;
// When too much space is wasted in the array , Reduce capacity
if (size == data.length / 2)
resize(data.length / 2);
return res;
}
// Delete first element , Return deleted elements
public E removeFirst() {
return remove(0);
}
// Delete tail element , Return deleted elements
public E removeLast() {
return remove(size - 1);
}
// Remove elements e, If it does not exist , Then the meal returns -1
public void removeElement(E e) {
int index = find(e);
if (index != -1)
remove(index);
}
// Get index location as index The elements of
public E get(int index) {
if (index < 0 || index >= size)
throw new IllegalArgumentException("Index is illegal");
return data[index];
}
// Change the index position to index The elements of
public void set(int index, E e) {
if (index < 0 || index >= size)
throw new IllegalArgumentException("Index is illegal");
data[index] = e;
}
@Override
public String toString() {
StringBuilder res = new StringBuilder();
res.append(String.format("Array: size = %d , capacity = %d\n", size, data.length));
res.append("[");
for (int i = 0; i < size; i ++ ) {
res.append(data[i]);
if (i != size - 1)
res.append(", ");
}
res.append("]");
return res.toString();
}
}
Check automatic capacity expansion
Verify automatic volume reduction
Simple time complexity analysis **( Analyze according to the worst case )**
Sharing time complexity and preventing complexity fluctuation
Average complexity
The complexity oscillates
occasionally " lazy ", But it's more efficient !
Improved code
if (size == data.length / 4 && data.length / 2 != 0)
resize(data.length / 2);
copyright notice
author[Everything goes with fate ~~~],Please bring the original link to reprint, thank you.
https://en.cdmana.com/2022/01/202201262222575101.html
The sidebar is recommended
- Spring IOC container loading process
- [thinking] the difference between singleton mode and static method - object-oriented programming
- Hadoop environment setup (MySQL environment configuration)
- 10 minutes, using node JS creates a real-time early warning system for bad weather!
- Git tool
- Force deduction algorithm - 92 Reverse linked list II
- What is the sub problem of dynamic programming?
- C / C + +: static keyword summary
- Idea does not have the artifacts option when configuring Tomcat
- Anaconda can't open it
guess what you like
-
I don't know how to start this
-
Matlab simulation of transportation optimization algorithm based on PSO
-
MySQL slow log optimization
-
[Vue] as the window is stretched (larger, smaller, wider and higher), the text will not be displayed
-
Popular Linux distributions for embedded computing
-
Suzhou computer research
-
After installing SSL Certificate in Windows + tomcat, the domain name request is not successful. Please answer!!
-
Implementation time output and greetings of jQuery instance
-
The 72 year old uncle became popular. Wu Jing and Guo fan made his story into a film, which made countless dreamers blush
-
How to save computer research
Random recommended
- Springboot implements excel import and export, which is easy to use, and poi can be thrown away
- The final examination subjects of a class are mathematical programming, and the scores are sorted and output from high to low
- Two pronged approach, Tsinghua Professor Pro code JDK and hotspot source code notes, one-time learning to understand
- C + + recursive knapsack problem
- The use of GIT and GitHub and the latest git tutorial are easy to understand -- Video notes of crazy God speaking
- PostgreSQL statement query
- Ignition database test
- Context didn't understand why he got a high salary?, Nginxfair principle
- Bootstrap switch switch control user's guide, springcloud actual combat video
- A list that contains only strings. What other search methods can be used except sequential search
- [matlab path planning] multi ant colony algorithm grid map path planning [including GUI source code 650]
- [matlab path planning] improved genetic algorithm grid map path planning [including source code phase 525]
- Iinternet network path management system
- Appium settings app is not running after 5000ms
- Reactnative foundation - 07 (background image, status bar, statusbar)
- Reactnative foundation - 04 (custom rpx)
- If you want an embedded database (H2, hsql or Derby), please put it on the classpath
- When using stm32g070 Hal library, if you want to write to flash, you must perform an erase. If you don't let it, you can't write continuously.
- Linux checks where the software is installed and what files are installed
- SQL statement fuzzy query and time interval filtering
- 69. Sqrt (x) (c + + problem solving version with vs runnable source program)
- Fresh students are about to graduate. Do you choose Java development or big data?
- Java project: OA management system (java + SSM + bootstrap + MySQL + JSP)
- Titanic passenger survival prediction
- Vectorization of deep learning formula
- Configuration and use of private image warehouse of microservice architect docker
- Relearn JavaScript events
- For someone, delete return 1 and return 0
- How does Java dynamically obtain what type of data is passed? It is used to judge whether the data is the same, dynamic data type
- How does the database cow optimize SQL?
- [data structure] chain structure of binary tree (pre order traversal) (middle order traversal) (post order traversal) (sequence traversal)
- Webpack packaging optimization solution
- 5. Operation element
- Detailed explanation of red and black trees
- redhat7. 9 install database 19C
- Blue Bridge Cup notes: (the given elements are not repeated) complete arrangement (arrangement cannot be repeated, arrangement can be repeated)
- Detailed explanation of springboot default package scanning mechanism and @ componentscan specified scanning path
- How to solve the run-time exception of test times
- Detailed explanation of k8s management tool kubectl
- Android system view memory command