|
hi Richard,
thank you for replying. So the hash table implementation stores simple String data items, so we can only track if an item is in the data structure or not. The find function, determines if the string is in the data the hash table or not. The program loads the test dataset into the data structure, then performs find operations on all the test data items, followed by find operations on a disjoint set of unseen data items.
Iv been able to code the hash component, its just the search part that I'm not too sure of.
this is my hash function
public int hash ( String s )
{
int sum = 0;
for(int=0, i<s.length(); i++)
{sum +=((int)string.charAt(i))%size;}
return sum %size;
}
my find function would resembles something along these lines.
boolean find ( String s )
{
boolean found = false;
int value = hashFunction(s, size);
return found;
}
modified 17-May-20 5:15am.
|
|
|
|
|
As I suggested before, you just need a loop to compare your search value with all the ones already stored. If they are in an array or list then it is just a simple compare of each value. If they are in a database then it is a SQL SELECT statement.
|
|
|
|
|
Thank you Richard, ill try that and see. since the size of the list is already known, im thinking of using a for loop. ill let you know how it goes.
|
|
|
|
|
That is the simple way and should work well for small lists. But there are plenty of Java classes that can manage lists and provide most of the functions that you would need. Check the documentation for things like List, Arrays etc.
|
|
|
|
|
Hi, I'm creating a custom IDE vased on the Netbeans platform. When I build my project, two launchers are created in the build\launcher\bin folder for Windows. I've to apply branding on them. Not on the custom IDE window, but on these two <application name>.exe and <application name>64.exe files. At least file properties like product version, file version, product name. I try to play with the branding\core\core.jar\org\netbeans\core\startup\Bundle.properties, but it affects only on the IDE window.
Is the a way to define these file properties?
|
|
|
|
|
Answer: there is no way to do it with Netbeans. 3-rd party SW can be used. https://netbeans.apache.org/wiki/DevFaqExecutableIcon.asciidoc
|
|
|
|
|
كود جافا جاهز لاشارة المرور على اربع تقطعات
|
|
|
|
|
Translated:
"Java code is ready for the traffic signal on four blocks."
That makes no sense and is not a question.
|
|
|
|
|
Something about traffic lights. Still a no, even if it was in English.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
I don't know what this is, except maybe a request for someone to write his/her code for them.
|
|
|
|
|
No.
Bastard Programmer from Hell
If you can't read my code, try converting it here[^]
"If you just follow the bacon Eddy, wherever it leads you, then you won't have to think about politics." -- Some Bell.
|
|
|
|
|
Please help me on this VB.NET
assuming i have n=0(using a label to show how n is increasing) and i want my n to be increasing when a button is pressed till my n=100. E.g when button5 is pressed it should be n=n+5(initial n+5) or when button4 is pressed it should be n=n+4(initial n+4)
|
|
|
|
|
|
In addition to Peter's suggestion, we have already explained that if you want help then you need to show some effort on your part. You would also do well to make up your mind which language you want to work in. Switching between VB.NET and Java every few days is just a waste of your time, as you will be unlikely to get anywhere. Focus on one and go and study the language carefully. I have already given you the link (below) for the Java Tutorials, and you can find plenty of resources for VB.NET here on CodeProject and on MSDN.
|
|
|
|
|
Very easy. In the button click event take the value of the label and add one to it and then write it back to the label.
Social Media - A platform that makes it easier for the crazies to find each other.
Everyone is born right handed. Only the strongest overcome it.
Fight for left-handed rights and hand equality.
|
|
|
|
|
Pls i need some help on java programming
|
|
|
|
|
|
Thanks very much sir... Pls can u help me on VB6
|
|
|
|
|
There are no tutorials any more for VB6. That's been long dead.
Pickup the free Community edition of Visual Studio and you can find all kinds of resources on VB.NET.
|
|
|
|
|
Sir, can u help me on VB.NET I dont know anything about it and please sir am not with system to be use to run the code can u be helping me to run it and be showing me the output?.
sorry for the question sir
|
|
|
|
|
|
|
Maybe you can be helping me to run my code and be showing me the output because am not with system right now
And please help me on VB.NET
|
|
|
|
|
Sorry, we are not here to do other people's work for them. I have given you some links in your QA post which will allow you to build and test your code online; give them a try.
|
|
|
|
|