gpt4 book ai didi

java - Java 哈希表

转载 作者:行者123 更新时间:2023-12-02 11:18:07 24 4
gpt4 key购买 nike

我提供了一个简单的哈希表程序。然而,输出正在输出不需要的零。我已经搜索了排除零的解决方案。有什么建议吗?程序下方提供了输出。

import java.util.Random;

class HashTable
{
int[] arr;
int c;

public HashTable(int capacity)
{
this.c = nextPrime(capacity);
arr = new int[this.c];
}


public void insert(int ele)
{
arr[ele % c] = ele;
}

public void clear()
{
arr = new int[c];
}

public boolean contains(int ele)
{
return arr[ele % c] == ele;
}

private static int nextPrime( int n )
{
if (n % 2 == 0)
n++;
for (; !isPrime(n); n += 2);

return n;
}

private static boolean isPrime(int n)
{
if (n == 2 || n == 3)
return true;
if (n == 1 || n % 2 == 0)
return false;
for (int i = 3; i * i <= n; i += 2)
if (n % i == 0)
return false;
return true;
}
public void printTable()
{
System.out.print("Hash Table:\n ");
for (int i = 0; i < c; i++)
System.out.print(arr[i] +" ");
System.out.println();
}
}


public class HashTableTest
{
public static void main(String[] args)
{
int j;
for(j = 0; j <= 5; j++)
{
Random random = new Random();
int range = 100 - 25 + 1;
int rm = random.nextInt(range) + 25;
HashTable ht = new HashTable(rm);

int i;
for(i = 0; i <= rm ; i++)
{
Random ran = new Random();
int rn = 20000 - 1 + 1;
int m = ran.nextInt(rn);
ht.insert(m);

}

ht.printTable();
}
}
}

输出:

Hash Table:
5162 19492 0 0 0 18695 0 15582 19499 17542 13271 2948 3839 17457 15411
13810 15769 0 0 0 10344 15062 0 0 11416 11595 17826 0 4389 8929 0 0 19434 0
0 16767 9025 0 6891 11164 15437 19176 0 399 0 15086 11349 0 19628 227 17939
0 5214 18565 7441 19635 0 0 15633 0 0 0 5313 15905 11011 4604 0 0 3450 0 0
12709 0 6659 9597 12535 19923 18589 11203 16010 13430 5688 5155 11742 0
10142 5070 16552 4271

我知道它循环并提供五个不同的哈希表,但这对于本文来说会很长且不必要。

最佳答案

如果您只想从输出中排除 0,这可以解决问题。你的 for 循环看起来像:

for (int i = 0; i < c; i++){
if(arr[i]!=0){
System.out.print(arr[i] +" ");
}
}

关于java - Java 哈希表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50122449/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com