In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article focuses on "how to implement a simple array in java". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to implement a simple array with java.
Package com.clean.array;public class HighArray {private long [] array; private int nElems; public HighArray (int max) {array = new long [max]; nElems = 0;} public boolean find (long key) {int j; for (j = 0; j < nElems; j + +) {if (array [j] = = key) {break } if (j = = nElems) {return false;} else {return true;}} public void insert (long value) {array [nElems] = value; nElems + +;} public boolean delete (long value) {int j; for (j = 0; j < nElems) J + +) {if (value = = array [j]) {break;}} if (j = = nElems) {return false;} else {for (int k = j; k < nElems; k + +) {array [k] = array [k + 1];} nElems-- Return true;}} public void disPlay () {for (int j = 0; j < nElems; j + +) {System.out.print (Array [j] + ");} System.out.println ();}} package com.clean.array;public class HighArrayApp {public static void main (String [] args) {int max = 100 HighArray highArray = new HighArray (max); highArray.insert; highArray.insert (60); highArray.insert (11); highArray.disPlay (); long key = 1100 / long key If (highArray.find (key)) {System.out.println ("find key =" + key);} else {System.out.println ("can not find the key:" + key);} highArray.delete (100); highArray.delete (11); highArray.disPlay () }} at this point, I believe you have a deeper understanding of "how to implement a simple array in java". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.