Forums Register Login

Swapping two float values with no temp varaible

+Pie Number of slices to send: Send
Hi,

I recently read the trick about swapping two int values with no temp variable (the XOR trick), but I discovered that that does not work with floats. Is there a way to swap two float variables with no temp variable?

Regards,

Manny
+Pie Number of slices to send: Send
Hi.

Here's my code (mostraMensagem = showMessage).



Sorry for somethings, but it worked.


java Swapping
N1 = 3.14
N2 = 9.98

Swapping.........
N1 = 9.98
N2 = 3.1400003



Hope that my code helped you.
+Pie Number of slices to send: Send
I don't have a specific counterexample but I am willing to bet that for sufficiently extreme values of the two floats (close to the maximum possible float value, close to the minimum possible float value, or so far apart in range that N1 + N2 = N1 and N2 <> 0) that doesn't work.

Actually, now that I reread your post, even the example you provided didn't work!
[ January 24, 2008: Message edited by: Paul Clapham ]
+Pie Number of slices to send: Send
Theoretically the following code will work for all numbers (the comments indicate the proof of correctness; A and B are the original values):

There is one small problem: floating point arithmetic will probably cause some small rounding errors when using with float and double.


Edit: this will probably work with one workaround, which gives you TWO temporary variables:

[ January 25, 2008: Message edited by: Rob Prime ]
+Pie Number of slices to send: Send
This works without ever declaring any more variables:

Like Rob's last solution, it even handles values like Float.POSITIVE_INFINITY and Float.NaN, which Rob's original subtraction solution can't handle at all.

Still, this is a lot of work to do to avoid something as trivial as allocating an extra temp variable.
+Pie Number of slices to send: Send
 

Originally posted by Jim Yingst:
Still, this is a lot of work to do to avoid something as trivial as allocating an extra temp variable.



These kinda tricks are asked in interviews, no use in real project.
+Pie Number of slices to send: Send
Nobody read my post?
It worked!
+Pie Number of slices to send: Send
We all read your post. It's a good technique, but as your output showed, and as Paul Clapham pointed out, it has roundoff errors. So now we are discussing ways to swap the exact values. Try swapping 0.0000001F and 1000000. Or swapping 1 and Float.POSITIVE_INFINITY.
+Pie Number of slices to send: Send
 

Originally posted by ankur rathi:
These kinda tricks are asked in interviews, no use in real project.


I hope everybody knows enough to avoid companies that think that this sort of question is suitable for interviews.
I hired a bunch of ninjas. The fridge is empty, but I can't find them to tell them the mission.
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 4439 times.
Similar Threads
Response to algorithms
swapping function
Swapping the string values in java
How will u swap three variable without using temp variable !??
sorting fractions problem
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 06:02:14.