Tagged Questions
The balancing tag has no wiki summary.
10
votes
8answers
23k views
The best way to calculate the height in a binary search tree? (balancing an AVL-tree)
I'm looking for the best way to calculate a nodes balance in an AVL-tree. I thought I had it working, but after some heavy inserting/updating I can see that it's not working correct (at all).
This ...
4
votes
2answers
430 views
CSS: Two columns, balanced heights with preference for the left column
I have an ordered list of movies. Each movie has a name and a description. The description length varies. I list the movies one by one in two columns, roughly like this:
1. Blues Brothers ...
3
votes
2answers
2k views
AVL Tree Balancing
I am working on an assignment that asks me to implement an AVL tree. I'm pretty sure I have the rotation methods correct, but I'm having trouble figuring out when to use them.
For example, the ...
2
votes
2answers
91 views
Getting a single char and passing it to a function in C
I'm new at C and a bit at this site.
We were asked to balance symbols using stacks in C. I have a function push and pop which adds and deletes the symbols to be balanced, respectively. Whenever the ...
1
vote
5answers
38 views
Multi player team game: Auto team-balancing algorithm based on player rank
Setting: Multiplayer team game.
Problem: Each player has a 1 to 5 star rating which is calculated based on their player stats. I was hoping to find an algorithm that assigns teams to these players in ...
1
vote
0answers
34 views
MMORPG game balancing [closed]
I've seen a couple of examples of some game balancing techniques in books yet they are not comprehensive and not particularly aimed at MMORPGs but I'm looking for practical examples of game balancing ...
1
vote
1answer
103 views
solr balanced indexing
I have two Solr server. The databases every day large amounts of data changes will happen. How I know and automate the problem that, until solr0 adding/commiting/warmuping, while just solr1 serve, and ...
1
vote
0answers
175 views
Hibernate load balancing and remote integration with EJB on Glassfish 3.1
this is the first time I do a question and I ask this as I'm projecting my own architecture. What I've in mind is to do an integration between Stateful/Stateless EJB3 Session Beans + Hibernate, but ...
0
votes
0answers
20 views
WebLogic Cluster balancer always route to second node
I have configured Apache to load balance two WebLogic nodes (using mod_weblogic),
but all requests are forwarded to second node.
Here what I have added to httpd.conf:
LoadModule weblogic_module ...
0
votes
1answer
12 views
How Sessions works in a load balancing environment?
I have a web site which runs on a single server. Now the number of users are becoming high. So we are planning to introduce a load balancing server in few days.. What all thing i need to keep in mind ...
0
votes
0answers
27 views
How to implement load balancing between a dedicated server and a VPS
I currently have website which was originally hosted on a VPS (with root access) but to improve performance i bought an additional dedicated server which certainly helped. I still kept the vps for ...
0
votes
1answer
45 views
How to implement weighted round robin using c#?
If I have some servers: 192.168.100.1, 192.168.100.2, 192.168.100.3, 192.168.100.4...
and weights of them are: 5, 1, 2, 3
I want to implement load balancing, but how can I implement weighted round ...
0
votes
1answer
73 views
file uploads and sessions while load balancing using nginx and php5-fpm
We have two webservers running with nginx + php5-fpm configuration (native php sessions on a memdisk)
The webservers are using different subdomains and load-balancing is somehow satisfied.
Now we ...
0
votes
0answers
289 views
WCF netTCP on IIS 7.5 with Load Balancer
Let me know if any one successful with the above combination in a Intranet environment,
If any points or limitation can be listed too
Our client environment will have .Net 2.0/3.5/4
0
votes
1answer
246 views
Partition a set of numbers into two parts with the smallest difference
Special thanks to one that can help:
Partition a set of numbers (n numbers) into 2 subset so that the sum of numbers in subset 1 has the least difference with the sum of numbers in subset 2. Also the ...