Skip to content

Instantly share code, notes, and snippets.

View radeoliveira's full-sized avatar
💭
I may be slow to respond.

R. André de Oliveira radeoliveira

💭
I may be slow to respond.
  • Portugal
  • 13:56 (UTC +01:00)
View GitHub Profile
@divanibarbosa
divanibarbosa / HashTableLista.java
Last active November 4, 2023 03:37
Hash Table List - Tabela Hash com colisão Lista em Java
/* Criado por: profa. Divani Barbosa Gavinier
Curriculo Lattes: http://lattes.cnpq.br/8503400830635447
[email protected]
*/
import java.io.*; // pacote contem classe Scanner
import java.util.*; // pacote contem System.in
import java.lang.*; // pacote contem Math.abs()
class No {
public double item;