-
Notifications
You must be signed in to change notification settings - Fork 0
/
lec86_implementation_MyHashMap.java
54 lines (54 loc) · 1.43 KB
/
lec86_implementation_MyHashMap.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//package shreya.java;
//
//import java.util.LinkedList;
//
//public class lec86_implementation_MyHashMap {
// static class MyHashMap<K,V>{
// public static final int DEFAULT_CAPACITY=4;
// public static final float DEFAULT_LOAD_FACTOR=.75f;
// private class Node{
// K key;
// V value;
// Node(K key,V value){
// this.key = key;
// this.value =value;
// }
// private int n; //the number of entries in map
// private LinkedList<Node>[]buckets;
// private void iniBuckets(int N){ //N- capacity/size of buckets array
// buckets = new LinkedList[N];
// for(int i=0;i< buckets.length;i++){
// buckets[i]=new LinkedList<>();
//
//
// }
// }
// public MyHashMap(){
// iniBuckets(DEFAULT_CAPACITY);
// }
// public int size(){ //no of entries in map
//
// }
// private int HashFun(K key){
// int hc = key.hashCode();
// return (Math.abs(hc))% buckets.length;
// }
// public void put(K key , V value){
// int bi = HashFun()
//
// }
// public void get(K key){
//
// }
// public V remove(K key){
//
// }
// }
//
// }
//
//
// public static void main(String[] args) {
//
// }
//}