1稀疏數(shù)組
沒什么好說的,挺簡(jiǎn)單的械媒。就是講數(shù)組轉(zhuǎn)換為n行3列的二維數(shù)組目锭。
接下來是代碼
package com.atguigu.sparsearray;
public class SparseArray {
public static void main(String[] args) {
// 創(chuàng)建一個(gè)原始的二維數(shù)組 11 * 11
// 0: 表示沒有棋子, 1 表示 黑子 2 表藍(lán)子
int chessArr1[][] = new int[11][11];
chessArr1[1][2] = 1;
chessArr1[2][3] = 2;
chessArr1[4][5] = 2;
// 輸出原始的二維數(shù)組
System.out.println("原始的二維數(shù)組~~");
for (int[] row : chessArr1) {
for (int data : row) {
System.out.printf("%d\t", data);
}
System.out.println();
}
// 將二維數(shù)組 轉(zhuǎn) 稀疏數(shù)組的思
// 1. 先遍歷二維數(shù)組 得到非0數(shù)據(jù)的個(gè)數(shù)
int sum = 0;
for (int i = 0; i < 11; i++) {
for (int j = 0; j < 11; j++) {
if (chessArr1[i][j] != 0) {
sum++;//非0數(shù)據(jù)個(gè)數(shù)
}
}
}
// 2. 創(chuàng)建對(duì)應(yīng)的稀疏數(shù)組
int sparseArr[][] = new int[sum + 1][3];//m有多少個(gè)就有多少行
// 給稀疏數(shù)組賦值
sparseArr[0][0] = 11;
sparseArr[0][1] = 11;
sparseArr[0][2] = sum;
// 遍歷二維數(shù)組纷捞,將非0的值存放到 sparseArr中
int count = 0; //count 用于記錄是第幾個(gè)非0數(shù)據(jù)
for (int i = 0; i < 11; i++) {
? ? ? ? ? ? ? ?for (int j = 0; j < 11; j++) {
? ? ? ? ? ? ? if (chessArr1[i][j] != 0) {
? ? ? ? ? ? ? ? ? ? ? ? ? count++;
? ? ? ? ? ? ? ? ? ? ? ? ? sparseArr[count][0] = i;
? ? ? ? ? ? ? ? ? ? ? ? ? sparseArr[count][1] = j;
? ? ? ? ? ? ? ? ? ? ? ? ? sparseArr[count][2] = chessArr1[i][j];
}
}
}
// 輸出稀疏數(shù)組的形式
System.out.println();
System.out.println("得到稀疏數(shù)組為~~~~");
for (int i = 0; i < sparseArr.length; i++) {
System.out.printf("%d\t%d\t%d\t\n", sparseArr[i][0], sparseArr[i][1], sparseArr[i][2]);
}
System.out.println();
//將稀疏數(shù)組 --》 恢復(fù)成 原始的二維數(shù)組
/*
*? 1. 先讀取稀疏數(shù)組的第一行痢虹,根據(jù)第一行的數(shù)據(jù),創(chuàng)建原始的二維數(shù)組主儡,比如上面的? chessArr2 = int [11][11]
2. 在讀取稀疏數(shù)組后幾行的數(shù)據(jù)奖唯,并賦給 原始的二維數(shù)組 即可.
*/
//1. 先讀取稀疏數(shù)組的第一行,根據(jù)第一行的數(shù)據(jù)糜值,創(chuàng)建原始的二維數(shù)組
int chessArr2[][] = new int[sparseArr[0][0]][sparseArr[0][1]];
//2. 在讀取稀疏數(shù)組后幾行的數(shù)據(jù)(從第二行開始)丰捷,并賦給 原始的二維數(shù)組 即可
for(int i = 1; i < sparseArr.length; i++) {
chessArr2[sparseArr[i][0]][sparseArr[i][1]] = sparseArr[i][2];
}
// 輸出恢復(fù)后的二維數(shù)組
System.out.println();
System.out.println("恢復(fù)后的二維數(shù)組");
for (int[] row : chessArr2) {
for (int data : row) {
System.out.printf("%d\t", data);
}
System.out.println();
}
}
}
隊(duì)列
package com.atguigu.queue;
import java.util.Scanner;
public class ArrayQueueDemo {
public static void main(String[] args) {
//測(cè)試一把
//創(chuàng)建一個(gè)隊(duì)列
ArrayQueue queue = new ArrayQueue(3);
char key = ' '; //接收用戶輸入
Scanner scanner = new Scanner(System.in);//
boolean loop = true;
//輸出一個(gè)菜單
while(loop) {
System.out.println("s(show): 顯示隊(duì)列");
System.out.println("e(exit): 退出程序");
System.out.println("a(add): 添加數(shù)據(jù)到隊(duì)列");
System.out.println("g(get): 從隊(duì)列取出數(shù)據(jù)");
System.out.println("h(head): 查看隊(duì)列頭的數(shù)據(jù)");
key = scanner.next().charAt(0);//接收一個(gè)字符
switch (key) {
case 's':
queue.showQueue();
break;
case 'a':
System.out.println("輸出一個(gè)數(shù)");
int value = scanner.nextInt();
queue.addQueue(value);
break;
case 'g': //取出數(shù)據(jù)
try {
int res = queue.getQueue();
System.out.printf("取出的數(shù)據(jù)是%d\n", res);
} catch (Exception e) {
// TODO: handle exception
System.out.println(e.getMessage());
}
break;
case 'h': //查看隊(duì)列頭的數(shù)據(jù)
try {
int res = queue.headQueue();
System.out.printf("隊(duì)列頭的數(shù)據(jù)是%d\n", res);
} catch (Exception e) {
// TODO: handle exception
System.out.println(e.getMessage());
}
break;
case 'e': //退出
scanner.close();
loop = false;
break;
default:
break;
}
}
System.out.println("程序退出~~");
}
}
// 使用數(shù)組模擬隊(duì)列-編寫一個(gè)ArrayQueue類
class ArrayQueue {
private int maxSize; // 表示數(shù)組的最大容量
private int front; // 隊(duì)列頭
private int rear; // 隊(duì)列尾
private int[] arr; // 該數(shù)據(jù)用于存放數(shù)據(jù), 模擬隊(duì)列
// 創(chuàng)建隊(duì)列的構(gòu)造器
public ArrayQueue(int arrMaxSize) {
maxSize = arrMaxSize;
arr = new int[maxSize];
front = -1; // 指向隊(duì)列頭部,分析出front是指向隊(duì)列頭的前一個(gè)位置.
rear = -1; // 指向隊(duì)列尾寂汇,指向隊(duì)列尾的數(shù)據(jù)(即就是隊(duì)列最后一個(gè)數(shù)據(jù))
}
// 判斷隊(duì)列是否滿
public boolean isFull() {
return rear == maxSize - 1;
}
// 判斷隊(duì)列是否為空
public boolean isEmpty() {
return rear == front;
}
// 添加數(shù)據(jù)到隊(duì)列
public void addQueue(int n) {
// 判斷隊(duì)列是否滿
if (isFull()) {
System.out.println("隊(duì)列滿病往,不能加入數(shù)據(jù)~");
return;
}
rear++; // 讓rear 后移
arr[rear] = n;
}
// 獲取隊(duì)列的數(shù)據(jù), 出隊(duì)列
public int getQueue() {
// 判斷隊(duì)列是否空
if (isEmpty()) {
// 通過拋出異常
throw new RuntimeException("隊(duì)列空,不能取數(shù)據(jù)");
}
front++; // front后移
return arr[front];
}
// 顯示隊(duì)列的所有數(shù)據(jù)
public void showQueue() {
// 遍歷
if (isEmpty()) {
System.out.println("隊(duì)列空的骄瓣,沒有數(shù)據(jù)~~");
return;
}
for (int i = 0; i < arr.length; i++) {
System.out.printf("arr[%d]=%d\n", i, arr[i]);
}
}
// 顯示隊(duì)列的頭數(shù)據(jù)停巷, 注意不是取出數(shù)據(jù)
public int headQueue() {
// 判斷
if (isEmpty()) {
throw new RuntimeException("隊(duì)列空的,沒有數(shù)據(jù)~~");
}
return arr[front + 1];
}
}
package com.atguigu.queue;
import java.util.Scanner;
public class CircleArrayQueueDemo {
public static void main(String[] args) {
//測(cè)試一把
System.out.println("測(cè)試數(shù)組模擬環(huán)形隊(duì)列的案例~~~");
// 創(chuàng)建一個(gè)環(huán)形隊(duì)列
CircleArray queue = new CircleArray(4); //說明設(shè)置4, 其隊(duì)列的有效數(shù)據(jù)最大是3
char key = ' '; // 接收用戶輸入
Scanner scanner = new Scanner(System.in);//
boolean loop = true;
// 輸出一個(gè)菜單
while (loop) {
System.out.println("s(show): 顯示隊(duì)列");
System.out.println("e(exit): 退出程序");
System.out.println("a(add): 添加數(shù)據(jù)到隊(duì)列");
System.out.println("g(get): 從隊(duì)列取出數(shù)據(jù)");
System.out.println("h(head): 查看隊(duì)列頭的數(shù)據(jù)");
key = scanner.next().charAt(0);// 接收一個(gè)字符
switch (key) {
case 's':
queue.showQueue();
break;
case 'a':
System.out.println("輸出一個(gè)數(shù)");
int value = scanner.nextInt();
queue.addQueue(value);
break;
case 'g': // 取出數(shù)據(jù)
try {
int res = queue.getQueue();
System.out.printf("取出的數(shù)據(jù)是%d\n", res);
} catch (Exception e) {
// TODO: handle exception
System.out.println(e.getMessage());
}
break;
case 'h': // 查看隊(duì)列頭的數(shù)據(jù)
try {
int res = queue.headQueue();
System.out.printf("隊(duì)列頭的數(shù)據(jù)是%d\n", res);
} catch (Exception e) {
// TODO: handle exception
System.out.println(e.getMessage());
}
break;
case 'e': // 退出
scanner.close();
loop = false;
break;
default:
break;
}
}
System.out.println("程序退出~~");
}
}
class CircleArray {
private int maxSize; // 表示數(shù)組的最大容量
//front 變量的含義做一個(gè)調(diào)整: front 就指向隊(duì)列的第一個(gè)元素, 也就是說 arr[front] 就是隊(duì)列的第一個(gè)元素
//front 的初始值 = 0
private int front;
//rear 變量的含義做一個(gè)調(diào)整:rear 指向隊(duì)列的最后一個(gè)元素的后一個(gè)位置. 因?yàn)橄M粘鲆粋€(gè)空間做為約定.
//rear 的初始值 = 0
private int rear; // 隊(duì)列尾
private int[] arr; // 該數(shù)據(jù)用于存放數(shù)據(jù), 模擬隊(duì)列
public CircleArray(int arrMaxSize) {
maxSize = arrMaxSize;
arr = new int[maxSize];
}
// 判斷隊(duì)列是否滿
public boolean isFull() {
return (rear? + 1) % maxSize == front;
}
// 判斷隊(duì)列是否為空
public boolean isEmpty() {
return rear == front;
}
// 添加數(shù)據(jù)到隊(duì)列
public void addQueue(int n) {
// 判斷隊(duì)列是否滿
if (isFull()) {
System.out.println("隊(duì)列滿榕栏,不能加入數(shù)據(jù)~");
return;
}
//直接將數(shù)據(jù)加入
arr[rear] = n;
//將 rear 后移, 這里必須考慮取模
rear = (rear + 1) % maxSize;
}
// 獲取隊(duì)列的數(shù)據(jù), 出隊(duì)列
public int getQueue() {
// 判斷隊(duì)列是否空
if (isEmpty()) {
// 通過拋出異常
throw new RuntimeException("隊(duì)列空畔勤,不能取數(shù)據(jù)");
}
// 這里需要分析出 front是指向隊(duì)列的第一個(gè)元素
// 1. 先把 front 對(duì)應(yīng)的值保留到一個(gè)臨時(shí)變量
// 2. 將 front 后移, 考慮取模
// 3. 將臨時(shí)保存的變量返回
int value = arr[front];
front = (front + 1) % maxSize;
return value;
}
// 顯示隊(duì)列的所有數(shù)據(jù)
public void showQueue() {
// 遍歷
if (isEmpty()) {
System.out.println("隊(duì)列空的,沒有數(shù)據(jù)~~");
return;
}
// 思路:從front開始遍歷扒磁,遍歷多少個(gè)元素
// 動(dòng)腦筋
for (int i = front; i < front + size() ; i++) {
System.out.printf("arr[%d]=%d\n", i % maxSize, arr[i % maxSize]);
}
}
// 求出當(dāng)前隊(duì)列有效數(shù)據(jù)的個(gè)數(shù)
public int size() {
// rear = 2
// front = 1
// maxSize = 3
return (rear + maxSize - front) % maxSize;?
}
// 顯示隊(duì)列的頭數(shù)據(jù)庆揪, 注意不是取出數(shù)據(jù)
public int headQueue() {
// 判斷
if (isEmpty()) {
throw new RuntimeException("隊(duì)列空的,沒有數(shù)據(jù)~~");
}
return arr[front];
}
}