vote up 2 vote down star

I need the perfect algorithm or C# function to calculate the difference (distance) between 2 decimal numbers.

For example the difference between:
100 and 25 is 75
100 and -25 is 125
-100 and -115 is 15
-500 and 100 is 600

Is there a C# function or a very elegant algorithm to calculate this or I have to go and handle every case separately with ifs.

If there is such a function or algorithm, which one is it?

flag

The examples you give are all integers - is that the case for all the numbers you test or are some floating point? If so, then you may have to settle for testing for when they're "close enough" - i.e. checking if the difference is less than some threshold. – geoglyph Dec 4 '08 at 10:43
why downvoted? this seems like a fair question for someone unfamiliar with Math.Abs – annakata Dec 4 '08 at 10:53
+1, no need for downvoting a perfectly ok question – TT Dec 4 '08 at 10:59
I think the phrase ' or I have to go and handle every case separately with ifs.' shows clearly this question was asked tongue in chhek – johnc Dec 6 '08 at 7:52

5 Answers

vote up 16 vote down check

You can do it like this

public decimal FindDifference(decimal nr1, decimal nr2)
{
  return Math.Abs(nr1 - nr2);
}
link|flag
Of course there is no need in putting this code into a separate function but it was more for clarifying – TT Dec 4 '08 at 9:19
vote up 3 vote down

Just adding this, as nobody wrote it here:

While you can surely use

Math.Abs(number1 - number2);

which is the easiest solution (and accepted answer), I wonder nobody wrote out what Abs actually does. Here's a solution that works in Java, C, C# and every other language with C like syntax:

int result = number1 - number2;
if (result < 0) {
    result *= -1;
}

It's that simple. You can also write it like this:

int result = number1 > number2 ? number1 - number2 : number2 - number1;

The last one could be even faster once it got compiled (both have one if and one subtraction, but the first one has a multiplication in some cases, the last one has not). The first one is actually doing what Abs is working.

link|flag
vote up 0 vote down

Basically you need a program like MATLAB or Mathematica to work out all the possible combinations, and then store them in a database.

Someone should host an online repository for these, as I'd imagine the database will be quite large.

link|flag
O_o. It's subtraction. I really hope you're being sarcastic. – Nick Johnson Dec 4 '08 at 11:27
Well, the original question had a tag that said "requires-sense-of-humour", so yes. Since the question is, as you say, just subtraction, with an absolute function around it, then I gathered the person asking was looking for some "clever" solutions :) – Lasse V. Karlsen Dec 4 '08 at 11:31
vote up 1 vote down

I don't think it's possible in C#, you may need to look at implementing it in Assembler

link|flag
Downvoted on this question!? Sense of humour anyone? – johnc Dec 4 '08 at 9:47
It is funny, but I would think about putting your humor in comments (or as community wiki) so you don't take hits on your rep. +1 for the hell of it. – paxdiablo Dec 4 '08 at 10:09
True, but I couldn't resist :) – johnc Dec 4 '08 at 10:24
I thought it was funny too ;-) But dry humour often gets missed in a written medium – MadKeithV Dec 4 '08 at 10:27
Comment of the year, +rep – qui Dec 5 '08 at 8:41
show 5 more comments
vote up 10 vote down
result = Math.Abs(value1 - value2);
link|flag
He wanted to say Math. Math is the .Net class that contains static methods for trigonometric, logarithmic, and other common mathematical functions – Germstorm Dec 8 '08 at 9:08
Corrected - damn yanks with there silly spelling ;) – Martin Dec 9 '08 at 18:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.