Results 1 to 12 of 12
Thread: Binary Addition
- 04-22-2008, 03:28 AM #1
Member
- Join Date
- Feb 2008
- Posts
- 8
- Rep Power
- 0
Binary Addition
Ok iv'e been stuck on this for a long time and i still can't get it to work. Binary addition given two arrays of booleans (binary numbers) that must be recursive and return an array of booleans. When i post my code i have so far that usually becomes the focus and everyone gets confused or goes off topic so im not doing it this time. And its binary addition not convert-to-decimal-and-use-jvm-to-add.
- 04-22-2008, 04:51 AM #2
Will you post your algorithm on binary addition?
or sight some adding example.....
I know it in assembly, maybe we could formulate that here in java....freedom exists in the world of ideas
- 04-22-2008, 05:17 AM #3
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Yes, if you don't put your code here at this point, tell me about the logic/algorithm you workout.
- 04-22-2008, 02:39 PM #4
Member
- Join Date
- Feb 2008
- Posts
- 8
- Rep Power
- 0
This is what iv'e been doing:
1) I found the smaller array, and then made it the same length as the big array
2) I ran each element through a loop to compare the same index in both arrays
3) If both booleans are false, set the index in the final array false
If one is true, set the final boolean true
If both are true, then i make a new number that has 1 true in front followed by all false, so that the true is one ahead of the current index, thenm i add the temporary array to the final array (this is generally where i run into problems)
- 04-23-2008, 03:46 AM #5
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
- 04-23-2008, 04:11 AM #6
Member
- Join Date
- Feb 2008
- Posts
- 8
- Rep Power
- 0
well the two arrays most likey arn't going to be the same size, and if you try to run a for loop going thru each loop at the same time ur gonna get a out of bounds error so i need to continue to prepend the arrays so that they both align up, like how we do addition. When we do addition and the numbers arn't the same length we know that there's as many zeros in fron of the shorter number as we need there to be.
- 04-23-2008, 04:45 AM #7
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
Ok, I got the point. What you have done up to now. :)
- 04-23-2008, 04:48 AM #8
Member
- Join Date
- Feb 2008
- Posts
- 8
- Rep Power
- 0
everything except the last part of 3
- 04-23-2008, 05:06 AM #9
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
After comparing two arrays with the same index, you can find the result, that both are false, only one or both are true. Is that right?
Next, can you refer the same index of the final array? If so why can't you refer the previous index?
- 04-23-2008, 05:39 PM #10
Hi Deo, here is your algorithm if I understood the problem
Java Code:package test; import java.util.*; public class BinaryAdd { private static boolean [] add(boolean [] a, boolean [] b) { // pad them to same length int l = a.length > b.length ? a.length : b.length; a = Arrays.copyOf(a, l); b = Arrays.copyOf(b, l); // prevent overflow, make the results bigger boolean [] r = new boolean[a.length + 1]; boolean t = false; for (int i = 0; i < l; i++) { if (a[i] && b[i]) { if (t) { r[i] = true; t = true; } else { r[i] = false; t = true; } } else if (a[i] || b[i]) { if (t) { r[i] = false; t = true; } else { r[i] = true; t = false; } } else { if (t) { r[i] = true; t = false; } else { r[i] = false; t = false; } } } // check overflow if (t) { r[l] = true; } return r; } public static void main(String[] args) { // least significant position is at 0 boolean a1[] = {true}; boolean a2[] = {false}; boolean a3[] = {true, true}; boolean a4[] = {false, false}; boolean a5[] = {true, false}; boolean a6[] = {false, true}; boolean a7[] = {true, true, true, true}; boolean a8[] = {false, true, false, true}; // keep in mind least significant value is at index 0 System.out.println(Arrays.toString(a1) + " + " + Arrays.toString(a1) + " = " + Arrays.toString(add(a1, a1))); System.out.println(Arrays.toString(a1) + " + " + Arrays.toString(a2) + " = " + Arrays.toString(add(a1, a2))); System.out.println(Arrays.toString(a3) + " + " + Arrays.toString(a3) + " = " + Arrays.toString(add(a3, a3))); System.out.println(Arrays.toString(a7) + " + " + Arrays.toString(a8) + " = " + Arrays.toString(add(a7, a8))); } }Daniel @ [www.littletutorials.com]
Language is froth on the surface of thought
- 04-24-2008, 05:13 AM #11
Member
- Join Date
- Feb 2008
- Posts
- 8
- Rep Power
- 0
ok thanks that works well. I'm actually using a class that contains a boolean array for my implementation but it fits right in. I see now where i went wrong, and you have also provided a more efficent way of aligning the arrays to do the addition. Thanks a bunch
- 04-24-2008, 05:34 AM #12
You are welcome. It was fun to implement :)
Daniel @ [www.littletutorials.com]
Language is froth on the surface of thought
Similar Threads
-
jTextField Simpe Addition - how to ? - Netbeans 6.0
By jesicapalma in forum NetBeansReplies: 4Last Post: 05-24-2010, 09:21 AM -
Addition program that displays the sum of two numbers
By Java Tip in forum Java TipReplies: 0Last Post: 03-28-2008, 08:46 PM -
binary search
By tranceluv in forum New To JavaReplies: 10Last Post: 01-14-2008, 07:13 PM -
Binbot Binary Newsreader 1.1b2
By JavaBean in forum Java SoftwareReplies: 0Last Post: 06-28-2007, 01:27 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks