0
votes
3answers
51 views
traverse a Binary search tree
I am trying to do a preorder traverse, and display the items. I think it suppose to go left, then back to root, then right to be a preorder?.
The first function i have cannot be changed. so, i had to …
25
votes
15answers
494 views
Suggestions for an open source Final Degree Project
Note: I'm not completely sure if this question really belongs to StackOverflow so feel free to vote for closing if you think not.
In Spain we have to undertake a final project when we end the …
6
votes
6answers
79 views
Software and Bio-Mimicry
I'm wondering if anyone knows of any software techniques taking advantage of biology? For example in the robotics world there are tons but what about software?
1
vote
2answers
53 views
Minimum Number of Operations needed.
Hello everyone there...
I have a problem, suppose I have a given string: "best", the target string is suppose: "beast". Then I have to determine the number of operations to convert the given string to …
3
votes
4answers
180 views
+150
Random playlist algorithm
I need to create a list of numbers from a range (for example from x to y) in a random order so that every order has an equal chance.
I need this for a music player I write in C#, to create play lists …
52
votes
10answers
2k views
Combined area of overlapping circles
I recently came across a problem where I had four circles (midpoints and radius) and had to calculate the area of the union of these circles.
Example image:
For two circles it's quite easy,
I …
4
votes
5answers
228 views
Non-Random Weighted Distribution
I currently have a system where the server tells all client applications when to next connect to the server between a server configured time window (say 12 to 6 am client time).
The current …
2
votes
2answers
113 views
Solving a cubic equation
As part of a program I'm writing, I need to solve a cubic equation exactly (rather than using a numerical root finder):
a*x**3 + b*x**2 + c*x + d = 0.
I'm trying to use the equations from here. …
0
votes
2answers
118 views
Optimized dot product in Python
The dot product of two n-dimensional vectors u=[u1,u2,...un] and v=[v1,v2,...,vn] is is given by u1*v1 + u2*v2 + ... + un*vn.
A question posted yesterday encouraged me to find the fastest way to …
2
votes
2answers
87 views
Finding sorted sub-sequences in a permutation
Given an array A which holds a permutation of 1,2,...,n. A sub-block A[i..j] of an array A
is called a valid block if all the numbers appearing in A[i..j] are consecutive numbers (may not be in order.
…
6
votes
11answers
442 views
Averaging angles… Again
I want to calculate the average of a set of angles, which represents source bearing (0 to 360 deg) - (similar to wind-direction)
I know it has been discussed before (several times). The accepted …
0
votes
4answers
126 views
shortest path algoritm
where you can get the shortest path algorithms for python?
Try it accumulate is calculating all short paths of network in a matrix or array
3
votes
12answers
2k views
How do I find the Excel column name that corresponds to a given integer?
How would you determine the column name (e.g. "AQ" or "BH") of the nth column in Excel?
Edit: A language-agnostic algorithm to determine this is the main goal here.
4
votes
10answers
177 views
A good algorithm for generating an order number
As much as I like using GUIDs as the unique identifiers in my system, it is not very user-friendly for fields like an order number where a customer may have to repeat that to a customer service …
0
votes
3answers
59 views
Random Decision Algorithm
I am making a simple AI and I am really new to this realm. What I need is an algorithm to make some sort of decisions based on some parameters; but with a little bit of randomness. What I have been …
