Jump to content
  • 0

Question

Posted (edited)

http://imgur.com/a/KJwdY

protected int getVoteWinner()
	{
		int old = 0;
		HashMap<Integer, Integer> temp = new HashMap<>();
		
		for (int vote : votes.values())
		{
			if (!temp.containsKey(vote))
				temp.put(vote, 1);
			else
			{
				old = temp.get(vote);
				old++;
				temp.getEntry(vote).setValue(old);
			}
		}
		
		int max = temp.head().getNext().getValue();
		int result = temp.head().getNext().getKey();
		
		for (Map.Entry<Integer, Integer> entry : temp.entrySet())
		{
			if (entry.getValue() > max)
			{
				max = entry.getValue();
				result = entry.getKey();
			}
		}
		
		votes.clear();
		temp = null;
		return result;
	}

How do I solve this problem? Use aCis 350, replaces FastMap with HashMap and is giving this error.

Edited by L2shaken

Recommended Posts

  • 0
Posted (edited)

No more love for javolution :D

 

I, tbh, got no clue what is Javolution in the end (realtime library, that's it), because L2J didn't use more than 5% of the complete library features. They simply replaced here and there few Lists/Maps/StringBuilder which could be simple ArrayList/HashMap for 70% of them, and for leftover be handled by concurrent (which has been reworked and got decent performance overall). And I personally prefer to rely on JDK features only.

 

In this topic, a concurrent or whatever linked type list is pointless, it can be achieved with better performance with simple container. There is no need to hit the head of the map, it's a result based method, so you begin at 0.

 

I was the first to drop Javolution, so it's more appropriate to say : I never liked it. :P

 

Trove had a better impact than Javolution for sure, notably because we use A LOT of Integer containers. But I tbh find it a pain in the ass to remember you have that library, not even 50% of Integer containers were managed by that lib, so you got inconsistent writting style over the whole pack => drop.

Edited by Tryskell
  • 0
Posted (edited)

I don't understand what you want, but this looks like better:

	protected int getVoteWinner()
	{
		final HashMap<Integer, Integer> temp = new HashMap<>();
		for (int vote : votes.values())
		{
			if (!temp.containsKey(vote))
				temp.put(vote, 1);
			
			int old = temp.get(vote);
			temp.getEntry(vote).setValue(++old);
		}
		
		int max = 0;
		int result = 0;
		
		for (Map.Entry<Integer, Integer> entry : temp.entrySet())
		{
			if (entry.getValue() > max)
			{
				max = entry.getValue();
				result = entry.getKey();
			}
		}
		
		return result;
	}
Edited by Rootware
  • 0
Posted

Because your knowledge so sucks. You try to calling from a map the value as object, not like the variable.

	protected int getVoteWinner()
	{
		final HashMap<Integer, Integer> temp = new HashMap<>();
		for (int vote : votes.values())
		{
			if (!temp.containsKey(vote))
				temp.put(vote, 1);
			
			int old = temp.get(vote);
			temp.put(vote, ++old); // If a record with this "vode" exists in Map then she will be rewrited with new value from "old" variable.
		}
		
		int max = 0;
		int result = 0;
		
		for (Map.Entry<Integer, Integer> entry : temp.entrySet())
		{
			if (entry.getValue() > max)
			{
				max = entry.getValue();
				result = entry.getKey();
			}
		}
		
		return result;
	}
  • 0
Posted

http://imgur.com/a/koUCR

Yes, but I still have this photo error.

I'm sorry i know i'm offtopic, why you even bother open a server? I guess you got a free pack since you are do it on your own, your knowledge is 0 and you go for a live server.

 

SweeTs please post a gif for me.

  • 0
Posted

I'm sorry i know i'm offtopic, why you even bother open a server? I guess you got a free pack since you are do it on your own, your knowledge is 0 and you go for a live server.

 

SweeTs please post a gif for me.

no gif for u 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • 👑 [FOR SALE] Lineage 2 Premium UCP – Modern Web Panel with Progression & Reward Systems. Looking for the ultimate edge to make your server boom and boost revenue? Introducing the L2 Premium UCP—the most comprehensive and modern User Control Panel on the market. Developed with a total focus on player experience (UX) and administrative automation. Say goodbye to outdated, buggy panels. Give your server the look and feel of an official game!  
    • Here I agree with you, because I get tired of clients like you and I don’t see any problems. Since you act in such a strange way, I’ll mirror it back to you, little brother.   Alice will even post a correspondence with you where you've been asking the same stupid questions (about prices or products) for three years and let everyone look and draw two personal conclusions about you (you're a little child)     If anyone wants to add you as a buyer to their group, let them take you hand and foot. I'll even help you pack you into an iron box.   Let's look at your last reply where you wish me luck in sales but then immediately run off to complain on the forum  yes, that's what people like you do and yes, I don't want to see people like you in my group or anywhere near it.   We're freelancing here, and yes, at first I check for loyalty and patience with clients, but when year after year they only ask me about prices - you know, if someone needs this, it's definitely not me.   Go with God, little brother, and find happiness in your life and stop making kindergarten on forums.😂   I don't need clients like that for free - who can't even look at payment methods and immediately become aggressive - and you always use free goods, just like your favorites from the Brazilian forum, you apparently have a fever about this - I have nothing against it - we had a nice conversation, everything is fine.            
    • Looking to release interface source from newer clients, if you got a client message me on discord: ilikebeer.
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..