数据结构(一)_数组

数组基本知识

数组对于每一门编程语言来说都是重要的数据结构之一,当然不同语言对数组的实现及处理也不尽相同。
Java语言中提供的数组是用来存储固定大小的同类型元素。

public class Demo1 {
    public static void main(String[] args) {

        // 定义一个数组,保存五名学生的成绩
        int[] scores = { 78, 93, 97, 84, 63 };

        // 输出数组中的第二个成绩
        System.out.println("数组中的第2个成绩为:" + scores[1]);
    }

}

数组的基本使用

1、 声明数组

语法: 数据类型[ ] 数组名;

或者 数据类型 数组名[ ];

其中,数组名可以是任意合法的变量名,如:

2、 分配空间

简单地说,就是指定数组中最多可存储多少个元素

语法: 数组名 = new 数据类型 [ 数组长度 ];

其中,数组长度就是数组中能存放元素的个数,如:

话说,我们也可以将上面的两个步骤合并,在声明数组的同时为它分配空间,如:

3、 赋值

分配空间后就可以向数组中放数据了,数组中元素都是通过下标来访问的,例如向 scores 数组中存放学生成绩

4、 处理数组中数据

我们可以对赋值后的数组进行操作和处理,如获取并输出数组中元素的值

在 Java 中还提供了另外一种直接创建数组的方式,它将声明数组、分配空间和赋值合并完成,如

它等价于:

使用循环操作 Java 中的数组

public static void main(String[] args) {

        // 定义一个数组,保存五名学生的成绩
        int[] scores = { 78, 93, 97, 84, 63 };

        //for循环打印
        for (int i = 0; i < scores.length; i++) {
            System.out.print(scores[i]+"  ");
        }
        System.out.println();
        //foreach打印
        //foreach是for语句的特殊简化版本,在遍历数组、集合时, foreach更简单便捷。
        //for(元素类型  变量:遍历对象){
        //执行的代码
        //}
        for (int i : scores) {
            System.out.print(i+"  ");
        }
    }

执行结果
78 93 97 84 63
78 93 97 84 63

编程练习

package com.zhb;

public class Demo1 {
    public static void main(String[] args) {

        int[] nums = new int[] { 61, 23, 4, 74, 13, 148, 20 };

        int max = nums[0]; // 假定最大值为数组中的第一个元素
        int min = nums[0]; // 假定最小值为数组中的第一个元素
        double sum = 0;// 累加值
        double avg = 0;// 平均值

        for (int i = 0; i < nums.length; i++) { // 循环遍历数组中的元素
            // 如果当前值大于max,则替换max的值

            if(nums[i]> max){
                max = nums[i];
            }

            // 如果当前值小于min,则替换min的值
            if(nums[i]< min){
                min = nums[i];
            }

            // 累加求和
            sum+=nums[i];

        }

        // 求平均值

        avg = sum/nums.length;
        System.out.println("数组中的最大值:" + max);
        System.out.println("数组中的最小值:" + min);
        System.out.println("数组中的平均值:" + avg);
    }

}

输出结果
数组中的最大值:148
数组中的最小值:4
数组中的平均值:49.0

使用 Arrays 类操作 Java 中的数组

Arrays 类是 Java 中提供的一个工具类,在 java.util 包中。该类中包含了一些方法用来直接操作数组,比如可直接实现数组的排序、搜索等.

package com.zhb;

import java.util.Arrays;

public class Demo1 {
    public static void main(String[] args) {

        // 定义一个字符串数组
        String[] hobbys = { "sports", "game", "movie" };

        // 使用Arrays类的sort()方法对数组进行排序
        Arrays.sort(hobbys);    

        // 使用Arrays类的toString()方法将数组转换为字符串并输出
        System.out.println( Arrays.toString(hobbys) );
    }

}

执行结果
[game, movie, sports]

构建动态数组

其实,这里就是类似模拟实现ArrayList类的实现。这里只是简化了部分。主要是代码

首先我们先构建一个int类型的动态数组

  • 这里默认容量为10和ArrayList一致,这也告诉我们ArrayList默认容量为10,其中阿里规约提到,使用集合时,要指定集合初始值大小
/**
 * 动态int数组
 *
 * @author: curry
 * @Date: 2018/8/2
 */
public class Array {

    private int[] data;

    private int size;

    /**
     * 构造函数。传入数组的容量capacity构造Array
     *
     * @param capacity
     */
    public Array(int capacity) {
        data = new int[capacity];
        size = 0;
    }

    /**
     * 无参构造函数,默认容量为10
     */
    public Array() {
        this(10);
    }

    /**
     * 获取数组中的元素个数
     *
     * @return
     */
    public int getSize() {
        return size;
    }

    /**
     * 获取数组容量
     *
     * @return
     */
    public int getCapacity() {
        return data.length;
    }

    /**
     * 返回数组是否为空
     *
     * @return
     */
    public boolean isEmpty() {
        return size == 0;
    }

    /**
     * 向数组最后添加元素
     *
     * @param e
     */
    public void addLast(int e) {
        add(size, e);
    }

    /**
     * 向数组最后增加一个元素
     *
     * @param e
     */
    public void addFirst(int e) {
        add(0, e);
    }

    /**
     * 向index位置增加元素e
     *
     * @param index
     * @param e
     */
    public void add(int index, int e) {
        // 判断index 是否合法
        if (index < 0 || index > size) {
            throw new IllegalArgumentException("index is error");
        }
        //判断容量是否超出
        if (size == data.length) {
            throw new IllegalArgumentException("Array is full");
        }

        //将index后面的值进行后移
        for (int i = size - 1; i >= index; i--) {
            data[i + 1] = data[i];
        }
        //赋值到index 位置
        data[index] = e;

        size++;

    }

    /**
     * 获取index索引位置的值
     *
     * @param index
     * @return
     */
    public int get(int index) {
        // 判断index 是否合法
        if (index < 0 || index >= size) {
            throw new IllegalArgumentException("index is error");
        }
        return data[index];
    }

    public void set(int index, int e) {
        // 判断index 是否合法
        if (index < 0 || index >= size) {
            throw new IllegalArgumentException("index is error");
        }
        data[index] = e;
    }

    /**
     * 查找数组中的是否有元素
     *
     * @param e
     * @return
     */
    public boolean contains(int e) {

        for (int i = 0; i < size; i++) {
            if (data[i] == e) {
                return true;
            }
        }

        return false;

    }

    /**
     * 查找数组中元素e所在的索引
     *
     * @param e
     * @return
     */
    public int find(int e) {
        for (int i = 0; i < size; i++) {
            if (data[i] == e) {
                return i;
            }
        }

        return -1;
    }

    /**
     * 删除索引为index的值
     *
     * @param index
     * @return
     */
    public int remove(int index) {

        // 判断index 是否合法
        if (index < 0 || index >= size) {
            throw new IllegalArgumentException("index is error");
        }

        int ret = data[index];

        for (int i = index; i < size; i++) {
            data[i] = data[i + 1];
        }
        size--;
        return ret;
    }

    /**
     * 删除第一个元素
     *
     * @return
     */
    public int removeFirst() {
        return remove(0);
    }

    /**
     * 删除最后一个元素
     *
     * @return
     */
    public int removeLast() {
        return remove(size - 1);
    }

    /**
     * 删除数组中的元素
     *
     * @param e
     */
    public void removeElement(int e) {
        int index = find(e);

        if (index != -1) {
            remove(index);
        }

    }

    @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();
    }

}

修改上面的代码,加入泛型

  • 注意:这里增加了resize方法,用于扩容,因为底层还是数组实现的,所以当数组的长度不够的时候,需要扩容,这里扩容为原先长度的2倍。ArrayList中为1.5倍
/**
 * 使用泛型
 *
 * @author: curry
 * @Date: 2018/8/2
 */
public class Array1<E> {

    private E[] data;

    private int size;

    /**
     * 构造函数。传入数组的容量capacity构造Array
     *
     * @param capacity
     */
    public Array1(int capacity) {
        data = (E[]) new Object[capacity];
        size = 0;
    }

    /**
     * 无参构造函数,默认容量为10
     */
    public Array1() {
        this(10);
    }

    /**
     * 获取数组中的元素个数
     *
     * @return
     */
    public int getSize() {
        return size;
    }

    /**
     * 获取数组容量
     *
     * @return
     */
    public int getCapacity() {
        return data.length;
    }

    /**
     * 返回数组是否为空
     *
     * @return
     */
    public boolean isEmpty() {
        return size == 0;
    }

    /**
     * 向数组最后添加元素
     *
     * @param e
     */
    public void addLast(E e) {
        add(size, e);
    }

    /**
     * 向数组最后增加一个元素
     *
     * @param e
     */
    public void addFirst(E e) {
        add(0, e);
    }

    /**
     * 向index位置增加元素e
     *
     * @param index
     * @param e
     */
    public void add(int index, E e) {
        // 判断index 是否合法
        if (index < 0 || index > size) {
            throw new IllegalArgumentException("index is error");
        }
        //判断容量是否超出
        if (size == data.length) {
            resize(2 * data.length);
        }

        //将index后面的值进行后移
        for (int i = size - 1; i >= index; i--) {
            data[i + 1] = data[i];
        }
        //赋值到index 位置
        data[index] = e;

        size++;

    }

    /**
     * 获取index索引位置的值
     *
     * @param index
     * @return
     */
    public E get(int index) {
        // 判断index 是否合法
        if (index < 0 || index >= size) {
            throw new IllegalArgumentException("index is error");
        }
        return data[index];
    }

    public void set(int index, E e) {
        // 判断index 是否合法
        if (index < 0 || index >= size) {
            throw new IllegalArgumentException("index is error");
        }
        data[index] = e;
    }

    /**
     * 查找数组中的是否有元素
     *
     * @param e
     * @return
     */
    public boolean contains(E e) {

        for (int i = 0; i < size; i++) {
            if (data[i].equals(e)) {
                return true;
            }
        }

        return false;

    }

    /**
     * 查找数组中元素e所在的索引
     *
     * @param e
     * @return
     */
    public int find(E e) {
        for (int i = 0; i < size; i++) {
            if (data[i].equals(e)) {
                return i;
            }
        }

        return -1;
    }

    /**
     * 删除索引为index的值
     *
     * @param index
     * @return
     */
    public E remove(int index) {

        // 判断index 是否合法
        if (index < 0 || index >= size) {
            throw new IllegalArgumentException("index is error");
        }

        E ret = data[index];

        for (int i = index; i < size; i++) {
            data[i] = data[i + 1];
        }

        size--;
        data[size] = null;
        return ret;
    }

    /**
     * 删除第一个元素
     *
     * @return
     */
    public E removeFirst() {
        return remove(0);
    }

    /**
     * 删除最后一个元素
     *
     * @return
     */
    public E removeLast() {
        return remove(size - 1);
    }

    /**
     * 删除数组中的元素
     *
     * @param e
     */
    public void removeElement(E e) {
        int index = find(e);

        if (index != -1) {
            remove(index);
        }

    }

    @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();
    }

    /**
     * 扩容
     *
     * @param newCapacity
     */
    private void resize(int newCapacity) {
        E[] newData = (E[]) new Object[newCapacity];

        for (int i = 0; i < data.length; i++) {
            newData[i] = data[i];
        }

        data = newData;
    }

}

其实,这里写的动态数组,也是在实现一个简单的ArrayList类。

原文地址:https://www.cnblogs.com/zhenghengbin/p/9434012.html

时间: 2024-10-17 19:18:37

数据结构(一)_数组的相关文章

数据结构(04)_数组类的实现

C++中支持原生数组,但由于原生数组的天然缺陷(不能获取长度信息.越界访问不会报错...),我们有必要来开发自己的数组类,从而解决这些问题.数组类的继承关系如图: 19.数组类的实现_1 19.1.抽象类模板Array 需求分析:1.由于线性表,不能作为数组直接使用,我们需要自己实现一个数组类来代替原生数组.2.解决原生数组越界访问不会报错的问题3.提供数组的长度信息 19.2.Array设计要点: 抽象类模本,存储空间的位置和大小由子类指定. 重载数组操作符,并判断访问下标是否越界(合法) 提

SDUT 3347 数据结构实验之数组三:快速转置

数据结构实验之数组三:快速转置 Time Limit: 1000MS Memory Limit: 65536KB Submit Statistic Problem Description 转置运算是一种最简单的矩阵运算,对于一个m*n的矩阵M( 1 = < m < = 10000,1 = < n < = 10000 ),它的转置矩阵T是一个n*m的矩阵,且T( i , j )=M( j , i ).显然,一个稀疏矩阵的转置仍然是稀疏矩阵.你的任务是对给定一个m*n的稀疏矩阵( m

(2)redis的基本数据结构是动态数组

redis的基本数据结构是动态数组 一.c语言动态数组 先看下一般的动态数组结构 struct MyData { int nLen; char data[0]; }; 这是个广泛使用的常见技巧,常用来构成缓冲区.比起指针,用空数组有这样的优势: 1.不需要初始化,数组名直接就是所在的偏移   2.不占任何空间,指针需要占用int长度空间,空数组不占任何空间.  这个数组不占用任何内存,意味着这样的结构节省空间: 该数组的内存地址就和他后面的元素的地址相同,意味着无需初始化,数组名就是后面元素的地

【算法与数据结构】图 -- 数组表示法

图的数组表示法 借助一个二维数组表示图,该二维数组的第i行,第j列的值表示从Node[i]到Node[j]: 无向图(网):是否有边 / 权值,arr[i][j] == arr[j][i],无向图(网)的特性,矩阵关于对角线对称. 有向图(网):是否有弧 / 权值. //图的数组表示法 //最大顶点个数 const int MAX_VERTEX = 100; //最大值 const int MAX_VALUE = (1 << 31) - 1; typedef struct _tagArcCel

当数据结构遇到编程语言——数组

赵振江 数据结构 数组 一维数组 "数组"你真的很了解吗? 数组大家都不是很陌生,它已经"植入"了许多编程语言,但初学者一提到数组,可能不会联想到"数据结构",而是想到的会是一种"数据类型",数组本质上就是一种极其简单的数据结构.所谓数组,就是相同数据类型的元素按一定顺序排列的集合.也就是在内存中划分一段连续的且大小固定(注意是连续)的内存空间(或者其他存储器)保存相同数据类型的数据,如下图.一般说的简单数组,都是静态的数组,

C语言学习_数组与指针2

数组其实是一种变相的指针,数组名同时也是指针,eg: CODE == &CODE[0]; 数组的加法: #include<stdio.h> #define SIZE 4 int main(void) { shortdates[SIZE]; short* pti; shortindex; doublebills[SIZE]; double* ptf; pti= dates;//把数组地址付给指针 ptf= bills; printf("%23s  %10s\n", &

Net基础篇_学习笔记_第九天_数组_三个练习

练习一: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace _数组练习01 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 string str = null; 14 string[

Net基础篇_学习笔记_第九天_数组_冒泡排序(面试常见题目)

冒泡排序: 将一个数组中的元素按照从大到小或从小到大的顺序进行排列. for循环的嵌套---专项课题 int[] nums={9,8,7,6,5,4,3,2,1,0}; 0 1 2 3 4 5 6 7 8 9第一趟比较:8 7 6 5 4 3 2 1 0 9 交换了9次 i=0 j=nums.Length-1-i第二趟比较:7 6 5 4 3 2 1 0 8 9 交换了8次 i=1 j=nums.Length-1-i第三趟比较:6 5 4 3 2 1 0 7 8 9 交换了7次 i=2 j=nu

数据结构——树状数组

我们今天来讲一个应用比较广泛的数据结构——树状数组 它可以在O(nlogn)的复杂度下进行单点修改区间查询,下面我会分成三个模块对树状数组进行详细的解说,分别是树状数组基本操作.树状数组区间修改单点查询的实现.树状数组查询最值的实现 一. 树状数组一般分为三种操作,初始化.修改.查询 在讲基本操作之前,我们先来看一张图 这张图就是树状数组的存储方式,对于没有接触过树状数组的人来说看懂上面这张图可能有些困难,上图的A数组就是我们的原数组,C数组则是我们需要维护的数组,这样存储能干什么呢,比如我们在