Harsha vaka

Greenhorn
+ Follow
since Oct 03, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Harsha vaka

Hey Steve

Could you be more detail i cant get it, is my desired output is possible at all? I REALLY APPRECIATE YOUR HELP.

Thanks
15 years ago
Hello All

I need to sort hash table based on values (not key),and there will be duplicate values. Let me explain with an example dataset

KEY VALUE
----------------
ABD 12.34
DCVB 34.56
EFC 12.34

I have above mentioned dataset, and i need to sort it based on "VALUE" and output shouls look like this

OUTPUT
-----------
ABD 12.34
EFC 12.34
DCVB 34.56


ANYONE PLEASE HELP ME, I AM WORKING ON IT FOR A LONG TIME USING HASHTABLE BUT ITS DELETING DUPLICATE "VALUES" BUT I NEED TO PERSIST THOSE DUPLICATE VALUES ALSO.
PLEASE HELP ME ASAP.

THANKS IN ADVANCE.
15 years ago
I have two vectors v1,v2 which contains strings in them, I want to compare
contents of v1 at index i with the contents of vector v2 at index j. If i use v1.get(i).equals(v2.get(j)); always returning false, even it contains common terms in both vectors.
please sugest solution for my problem.
16 years ago
I have two vectors v1,v2 which contains strings in them, I want to compare
contents of v1 at index i with the contents of vector v2 at index j. If i use v1.get(i).equals(v2.get(j)); always returning false, even it contains common terms in both vectors.
please sugest solution for my problem.
16 years ago