A data structure that uses a hash function to map identifying values, known as keys, to their associated values
0
votes
0answers
13 views
Using a hashset to break up a .txt file
I am trying to write a simple plagiarism program by taking one file and and comparing it to other files by splitting up each file every six words and comparing then to the other files, which is also ...
0
votes
1answer
107 views
HashMap a function which contains ArrayList
How can I put the sheetData from my function below into a Hashmap?
private static void showExcelData(List sheetData) {
for (int i = 0; i < sheetData.size(); i++) {
List list = (List) ...
3
votes
5answers
66 views
How to treat keys of HashMap as optional in java [duplicate]
While using Map as a function argument, only values for 3 keys are populated. However when this function is invoked in another function, the user populates values for initial 2 keys and he does not ...
0
votes
1answer
30 views
Weird behavior of VirtualKey codes in java
I am getting keyboard input from a phone, and trying to display that on the computer using the robot class. Since I get ascii from the phone, I have a hashmap for ascii to VirtualKey value ...
0
votes
3answers
62 views
What type is a HashMap bucket
I've been digging into the HashMap implementation in Java. All values are stored in a 'bucket' that is an Entry object. I was expecting it to be a collection or am I missing something here?
1
vote
3answers
114 views
Java Map vs Array (Temp) Sort of Last Index
I have looked at similar questions that detail the sorting of Maps and sorting of arrays of primitive data types, but no question directly details the difference between a one-time sort of a Java Map ...
0
votes
1answer
65 views
UTHash multilevel hash table crashing on HASH_FIND_STR
I have two structures like so:
struct item2_map{
char stringkey[MAX_SIZE];
UT_hash_handle hh;
}
struct item1_map{
int key1;
struct item2_map *item2_map;
UT_hash_handle hh;
}
In my code I do ...
0
votes
0answers
51 views
How to change the duplicate values with empty in arraylisthashmap in android?
i want to change duplicate value with empty in arraylist hashmap how can we change the duplicate value with empty you can see
i have TAG_ALPHAABET in that i store 0 to 9 and a to z i want to ...
1
vote
1answer
40 views
Proguard and HashMap<String, MyObject>
I'm developing some apis for android as a library project and I'd like to export them as an obfuscated jar.
I have various classes but the only public entities are:
MyInterface: An interface ...
0
votes
5answers
101 views
Clojure 2d list to hash-map
I have an infinite list like that:
((1 1)(3 9)(5 17)...)
I would like to make a hash map out of it:
{:1 1 :3 9 :5 17 ...)
Basically 1st element of the 'inner' list would be a keyword, while second ...
1
vote
2answers
78 views
Concurrency issues and hashmap
I am starting to think about multithreading for my game and the best place to start would be to seperate the three main components of the game: logic, gfx, sfx, into 3 seperate threads. The problem is ...
0
votes
0answers
20 views
Spinner Dynamic from Database
I have spinner dynamic like :
Spinner spin_transaksi;
String[] kodetransaksi = { "PM1", "PM2", "PM3", "PL1", "PL2", "PL3" };
HashMap<String, String[]> hash_kodetransaksi = new ...
0
votes
1answer
89 views
Fastest of the following Mapping objects (Dictionary,Tuple,KeyvaluePair)
Currently i have a mapping setup like this
//Identifiers to save (currently)
Dictionary<string, Dictionary<string, string>> toSaveIdentifiers =
new Dictionary<string, ...
0
votes
2answers
98 views
Hashmap in c++ not ordering elements?
i have to study hash map implementation . i have studied that it will sort elements according to the order mentioned in template. Example Code is:
#include <hash_map>
#include <iostream>
...
0
votes
1answer
53 views
retrieve data from a multidimensional JSON map in JAVA
I am Developing an application using Spring MVC and JSP, what am trying to do is fetch some data from a URL, the URL's data is in JSON encoded multidimensional map.
For Example:
{"RT":"32",
"HED":{
...
0
votes
5answers
185 views
HashMap return method
I have a method in a class, which initialize a HashMap and put some keys and values inside it, then the method returns the HashMap. How can I retrieve the returned HashMap?
public Map<String, ...
1
vote
1answer
91 views
Remove a key in hashmap when the value's hashset is Empty
I have a hashmap that maps strings keys to hashsets values, and I want to remove a key from the hashmap when the hashmaps's hashset value is empty. I'm having trouble approaching this. Here's what ...
0
votes
0answers
37 views
cosine similarity and tf idf in crawling system
I want to make 'focused crawling system' that can generate URL as many as possible. I used Netbeans as programming language. The problem is when processing document testing and calculating their ...
0
votes
1answer
74 views
Thread-safe HashMap access
I have a class which wraps up a map. The map is read/written by an Add() and isUpwardTrade() methods as indicated below.
Do you see any thread safety issues by synchronizing the whole methods?
How ...
0
votes
1answer
91 views
What is the quickest way to load a serialized hashmap in Java?
I have serialized a HashMap into a file using objectstream and fileoutputstream. It is a very huge HashMap with around 150 million entries. It takes a long time (~40 mins) to load when I read it back ...
0
votes
0answers
22 views
HashMap and ConcurrentHashMap interal working
I got somewhat confused on my understanding, when the below things asked to me in an interview:
1)ConcurrentHashMap : As per my understanding, there is no lock to get values(corresponding to a key) ...
0
votes
1answer
288 views
Convert .XML to HashMap
I have .xml file like this. i want convert this file to HashMap and reverse in Java. Could you please tell me how can i convert it to HashMap file? Thank you ...
This is the .xml file:
...
2
votes
1answer
73 views
Segmentation in ConcurrentHashMap
I am a newbie to the world of Java and I was exploring the ConcurrentHashMap API in which I discovered this:
static final int DEFAULT_INITIAL_CAPACITY = 16;
static final float DEFAULT_LOAD_FACTOR ...
0
votes
3answers
77 views
Overriding “getValueAt” in AbstractTableModel to bind Map to JTable
I have the following code:
class Files {
private static String files;
private static String duration;
private static String status;
public Files(String files, String ...
1
vote
2answers
158 views
How to write HashMap iterator?
When I use Iterator it = denseBagMap.keySet().iterator(), this would only return a key once even though if it contains more than once. But I want to be able to return an element let's say if 'a' ...
4
votes
5answers
121 views
Best HashMap initial capacity while indexing a List
I have a list (List<T> list) and I want to index its objects by their ids using a map (HashMap<Integer, T> map). I always use list.size() as the initial capacity in the HashMap constructor ...
5
votes
1answer
199 views
Hash table/map implementation without dynamic allocations
Does anyone know of a C/C++ hash table/map implementation that does not dynamically allocate memory? I'm working on an embedded system that has no standard library & no heap (unless I want to ...
0
votes
3answers
77 views
standard deviation arraylist error
I am getting an error when I try to retrieve the individual values to find the variance in the process of calculating the standard deviation. I can't figure out whether to use .get() or .getValue and ...
0
votes
1answer
65 views
Simple Adapter to show part of List (made with Hashmap) by keyword
I have but of a problem. I've made a list as following:
List<Map<String, String>> ShopsList = new ArrayList<Map<String,String>>();
private void initList() {
// ...
0
votes
2answers
59 views
Check if a key from Hashmap is typed in an AutoCompleteTextView
I created an HashMap<String, String> that i populated beforehand.
And i want my AutoCompleteTextView to tell me, as i'm typing if it's in the HashMap or not. Here's my code so far :
...
1
vote
4answers
82 views
How to solve Array IndexOutOfBoundException in Android
I have 5 lists of years and 5 lists of amounts corresponding to year lists.
year_Earnings = [2011,2012,2013];
year_Expense = [2011,2012];
year_Investment = [2013];
year_Returns=[];
...
0
votes
2answers
69 views
Bind HashTable/Map to Jtable
I have a C# background and I'm pretty new to Java. Trying to port my windows application to Mac using Java.
The issue I have is how to bind a HashTable that contains a class to a JTable so that the ...
-1
votes
1answer
276 views
How to hold data when page is reloading in jsp struts2
I have loading data from database for ArrayList. Then I use that data for updating process. I am search and Load data to arrayList. This is the code for load data when searching.
...
0
votes
1answer
64 views
Adding to hashmap and arraylist
I am trying to add hashmaps to array list.
But the map(completeEntrie) is overriding the previous values when I am trying to add more than one value to arraylist(listOfCompleteEntries)
public class ...
0
votes
1answer
223 views
hashmap working in simpleadapter but not working in custom array adapter
Hashmap for the code below is working for simpleadapter array but not for custom array adapter .Why ? and how do I fix it ? Please Help.Unable to resolve .Tried everything.
I am using lazyLoading ...
0
votes
1answer
121 views
listview lazyadapter
I like to pass selected item value from ListView to another activity.
I am using this code to get the details associated with the hashmap but I get java.lang.Integer cannot be cast to ...
-1
votes
7answers
131 views
JAVA: Given a Map <String, Set>, how do I fill the set given a string? [closed]
Keys: "apple", "orange", "grape", etc.
Each set will contain random numbers: 1, 2, 3, 4, 5, 6, 7, 8, 9
I need to create a Map (HashMap or TreeMap) that has Strings for keys and sets for the values. I ...
0
votes
1answer
76 views
Camel route with MyBatis delivers ArrayList of HashMaps instead of HashMap
Using MyBatis in a Camel route to select key/value pairs from a database table I got the following issue.
My route (as a part of a content enricher):
from("direct:resource")
...
1
vote
1answer
56 views
How does HashMap determine where to put things? [duplicate]
How does the add method in HashMap determine where a key goes in a HashMap? Like, if I was trying to put "S","T","A","C","K" into the HashMap of size 10, how does it determine where each letter goes?
...
3
votes
3answers
109 views
Java thread-safe write-only hashmap
In my Java class I include a Hashmap variable (class property) and run some Threads which write-only into that HashMap using put(): each time the write happens it stores a unique key (which is done ...
-1
votes
2answers
108 views
hashmap values are overriden [closed]
Ok, my last post got closed due to unclear question, so I'm asking again trying to be more specific.
I'm creating a HashMap. While creating it, I can see that keys are assigned proper distinct values, ...
0
votes
2answers
107 views
HashMap uses LinkedList internally
public V get(Object key) {
if (key == null)
return getForNullKey();
int hash = hash(key.hashCode());
for (Entry<K,V> e = table[indexFor(hash, table.length)];
e != null;
...
1
vote
1answer
48 views
print based on number of occurences
I am trying to sort my output of my program based on the number of occurrences of each key in the hashmap. I want it to print out in an increasing order of occurrences. It already prints out ...
1
vote
5answers
99 views
How to access a HashMap or ArrayList from any part of the application?
Every time I load certain values from database, a HashMap is loaded with certain keys and values from the database, how do I make this HashMap available to all the other classes without having to load ...
-2
votes
2answers
82 views
Hashmap NoSuchElementException error [closed]
I've been struggling with an java.util.NoSuchElementException error when I execute printAll.
public class myDatabase {
Map<String, HashSet<Integer>> mapOfSets = new ...
0
votes
2answers
69 views
Getting string representations from a hashtable using a toString
Just wondering what the best way to represent Strings are from Hash tables, I figured you would use an iterator somehow in a toString method but wasn't sure.
It should look something like the ...
0
votes
3answers
80 views
Java: Object as Value in HashMap being overwritten?
I am adding/editing objects that are values in a hashmap-- with different keys.
However, editing one object in the hashmap seems to edit them all(?)
What am I doing wrong here?
First, my (poorly ...
16
votes
2answers
477 views
Guava ImmutableMap noticably slower access than HashMap
While working on a memory benchmark of some high-throughput data structures, I realized I could use an ImmutableMap with only a little refactoring. Thinking this would be an improvement, I threw it ...
0
votes
4answers
112 views
How should I use a Hashmap to store objects?
I am developing a plugin that will store clans (Clan class objects) in a hashmap to be used during operation. The hasmap will be stored in a file (serializing the hashmap as a whole would be ideal but ...
0
votes
0answers
39 views
How to Sort a keySet by Corresponding Values [duplicate]
First of all let me say, please dont answer this by saying "just use a TreeMap" I am aware of TreeMaps but specifically want to learn if the following is possible.
In Java, lets say I have a HashMap ...

