码迷,mamicode.com
首页 > 编程语言 > 详细

java数据结构 - 数组使用的代码

时间:2019-01-28 16:39:26      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:array   i++   比较   tno   als   使用   int   []   java   

在研发过程中,将开发过程比较好的内容珍藏起来,下面内容段是关于java数据结构 - 数组使用的内容,希望能对大伙有较大用。

public class Array {
    private int[]Array;
    private int ArraySize;
    private int ArrayLength;
    private void GetArray(){
        Array = new int[ArraySize];
        if(Array == null)
            System.out.println("Memory Allocation Error");
    }
    public Array(int size){
        if(size <= 0)
            System.out.println("Invalid Array Size");
        else{
            ArraySize = size;
            ArrayLength = 0;
            GetArray();
        }
    }
    public int GetLength(){
        return ArrayLength;
    }
    public int GetNode(int i){
        return(i<0||i>ArrayLength)?null:Array[i];
    }
    public int Find(int x){
        for(int i=0; i<ArrayLength; i++)
            if(Array[i] == x)return i;
        return -1;
    }
    public boolean Insert(int x,int i){
        if(ArrayLength == ArraySize){
            System.out.println("overflow");
            return false;
        }
        else if(i<0 || i>ArrayLength){
            System.out.println("position error");
            return false;
        }
        else
        {
            for(int j=ArrayLength-1; j>=i; j--)
                return true;
        }
    }
    public boolean Remove(int i){
        if(ArrayLength == 0){
            System.out.println("Array Is Empty");
            return false;
        }
        else if(i<0 || i>ArrayLength-1){
            System.out.println("position error");
            return false;
        }
        else
        {
            for(int j=i; j<ArrayLength-1; j++)
            ArrayLength--;
            return true;
        }
    }
    public void Union(Array a,Array b){
        int n = a.GetLength();
        int m = b.GetLength();
        for(int i=0; i<m; i++){
                n++;
            }
        }
    }
    public void Intersection(Array a,Array b){
        int m = b.GetLength();
        int i = 0;
        while(i<m){
                m--;
            }
        }
    }
}

java数据结构 - 数组使用的代码

标签:array   i++   比较   tno   als   使用   int   []   java   

原文地址:http://blog.51cto.com/14141172/2347283

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!