0
votes
0answers
19 views

Efficiently Intersecting Big Boolean Arrays

Suppose I have N Boolean arrays of size M. I simply want to intersect between pairs of these Boolean arrays efficiently (in optimized time). In my problem in hand, N is at least equal to 4500 and M is ...
-1
votes
6answers
68 views

array of booleans to represent a set of integers

Hey I was wondering if anyone could explain this further. This is not an assignment, it's just a solution to one of my tests I had. I've been trying to understand it but I'm not sure.. Basically the ...
-1
votes
3answers
40 views

Quickly create a boolean array based on inclusion of the ith element in another list

Im working with a very large list, approximately 56,000 elements (all strings) in size. Im trying to cut down run time. Is there a way to shorten this line: x = [int(i in list2)for i in list1] ...
-4
votes
0answers
28 views

Having trouble starting project..Need Guidence..little experience with boolean [closed]

Create a class named StudentGroup: a. Three instance (object) variables: i. groupName: String //name of group (“Math”, “Bio”,etc) ii. students: an array of objects typed Student iii. noOfStudents: int ...
-2
votes
1answer
69 views

Calling/using a method in the same class [closed]

Here i have some problem with this. In the code there are 2 methods: isDNASequence and getDistances. Now i already filled in what i think should isDNASequence should be but i'm clueless on how to get ...
0
votes
2answers
92 views

how to use map with two int values and one string key

I am supposed to create a public StudentDatabase() which should create an empty database without using an java api class or method. There is supposed to be a method: public boolean add(String macid, ...
1
vote
1answer
34 views

Returning unique strings from two arrays of strings, concatenated in one string VBA

I have a code that is close to working but not quite. I have two arrays astrArray1 and astrArray2 and the function findUniques() is supposed to return the unique strings(names) among the two arrays. I ...
0
votes
3answers
103 views

Boolean function does not work properly

I have trouble to come up with a Boolean function as expected by the assignment. I just need some explanations as I want to write my own code. I am supposed to write a MIPS code that actually counts ...
1
vote
1answer
34 views

Loop boolean: Unequal to NA

I want to count the values in an array which are not "NA". E.g. I have array<-c(NA,NA,NA,NA,NA,4,-5.5463) I thought this would work, but it does not: counter<-0 for(i in 1:length(array)){ ...
1
vote
3answers
109 views

Why can't I make an object = bool in C#?

I have a program that I am trying to extend the object class to allow for a method that refers to all members of an Array. Code of ExtendedArray class: using System; using ...
1
vote
1answer
60 views

2D Array in an If Statement

I've created a 2D Array in Java that stores seatnumbers(row, column). I've initialized the array so that all values start out as 0, and if the seat is later occupied using another method Sit, the ...
-3
votes
5answers
146 views

True is not true? [closed]

I'm having an issue where true is not true. This sounds a little odd, and I think so too, which is why I figured I would get a discussion going about it. Here is my stripped down code: static void ...
1
vote
2answers
66 views

Converting boolean to BitSet in Java

So I before had this: public static final boolean opaqueCubeLookup = new boolean[4096]; But I found out that BitSet it much better at managing memory, so I changed it to this: public static final ...
-4
votes
2answers
107 views

Conway Game of Life [closed]

I am trying to write Conway's game of life. Right now I am representing the living cells with plus signs and the dead ones with negative signs. My first generation will appear fine then I get an out ...
-4
votes
3answers
115 views

Why in C++ sizeof(array[]) behave in different way for bool array? [duplicate]

Why in C++ sizeof(array) behave in different way for bool array then for arrays containing other types of data ? Edition : I'm asking because sizeof(boolarray)/sizeof(boolarray[0]) don't give ...
2
votes
3answers
50 views

Why null key change value to 1 in php array?

Following is the code I am testing - <?php error_reporting(E_ALL); $myarr = array(NULL => "swapnesh", TRUE => 1, 4 => "swap", "swap" => 4, TRUE => NULL, NULL => TRUE ); echo ...
2
votes
2answers
147 views

Copying a Boolean array on Java

I'm trying to copy a Boolean array into another boolean array. This is that I'm trying: public class Nucleo { private boolean[] nivel; public Nucleo(boolean[] carga, double x, int i){ //Copy the ...
2
votes
4answers
64 views

How do I find if an int is in array of arrays?

I have an array with each index being another array. If I have an int, how can I write code to check whether the int is present within the first 2 indicies of each array element within the array in ...
-1
votes
2answers
102 views

How can I convert a number to an array of Booleans in java? [duplicate]

Possible Duplicate: Convert a byte into a boolean array of length 4 in Java I am currently studying java, and making games. I have come on the situation with I need to make some test-data ...
1
vote
3answers
258 views

Javascript - Array with Boolean Keys?

I'm relatively new to Javascript, and there's probably just a trick I'm not familiar with, but how can I assign boolean values to Array keys? What's happening: var test = new Array(); test[false] = ...
0
votes
3answers
165 views

Recursion in 2D array

I have a two dimensional boolean array: boolean [][] field = new boolean[7][11]; What I want to do, is check if there is a valid "path" from field[0][0] to field[7][11]. For example, this would be ...
0
votes
1answer
188 views

Java SlotMachine class

I am writing a slot machine class that generates 3 arrays of 3 random numbers and checks if all of the numbers match, if so they are declared a winner. I have written another program to run 1000 slot ...
1
vote
3answers
112 views

Putting a field to the next empty array index

How can I put a string to the next empty index in a string array? I want to use a foreach loop and see if all the boolean strings are valid bools, and then put the keys of the invalid boolean strings ...
1
vote
3answers
144 views

returning boolean array

firstly I would like to say sorry if this is a repost, onto the question. Im creating a function which checks certain objects inside a game loop and then returns a boolean value if the check comes ...
0
votes
1answer
128 views

How to define a boolean array as a resource in XML?

Using Android's resource system, you can define a string array like this: <string-array name="my_string_array"> <item>One</item> <item>Two</item> ...
-3
votes
4answers
72 views

How can I detect 5 “True” values in a row within an array of boolean values? [closed]

That is, I'm looking for a function true_row such that: true_row([False, True, True, True, True, False, False]) returns False but true_row([True, True, True, True, True, False, False]) returns ...
1
vote
2answers
203 views

Java, method to insert an Object on an Array, returning a boolean

I'm having a difficult time trying to understand an assignment I was given as a part of a OOP Introduction project in Java. All names are changed, not exactly translated. I'm asked to complete the ...
2
votes
0answers
146 views

Inverting a numpy boolean array using ~

Can I use ~A to invert a numpy array of booleans, instead of the rather awkward functions np.logical_and() and np.invert()? Indeed, ~ seems to work fine, but I can't find it in any nympy reference ...
-5
votes
1answer
100 views

Put string in 2D boolean Array Java [closed]

I am just wondering if anyone could show me some code as to how I would put this string in a 2D boolean array and print it out Example: “0-1 0-2 1-2 1-3 2-3” , however the string could be more ...
1
vote
2answers
113 views

Weird corruption of Boolean Array in Java

This might sound weird but I am struggling with this bug for past 2 days. I have a boolean array in java that is initialised using a Random boolean generator. After that the boolean array is ...
1
vote
4answers
121 views

python multidimensional boolean array?

it would contain at most 1000 x 1000 x 1000 elements, which is too big for python dictionary. with dict, around 30 x 1000 x 1000 elements, on my machine it already consumed 2gb of memory and ...
-5
votes
1answer
55 views

Classes and Objects [closed]

Basically I don't even know where to start. I'm new at programming and my teacher really isn't very into the class this semester so we're having to figure out a lot of stuff on our own and this wasn't ...
0
votes
2answers
81 views

Search through an array for a certain String

In the verifyPlate method, how do I search through the array Plates for a certain string which is "platenum", then return a boolean value to the main method? import java.util.Scanner; import ...
1
vote
2answers
55 views

process does not terminate when enter no

package homework4; import java.util.Scanner; public class Prog4 { static Scanner scanner = new Scanner(System.in); public static void main(String[] args) { CreditCardNumber[] cred1; ...
0
votes
1answer
36 views

How do I look for bool values in array?

I have an array of objects, each containing a bool value with yes or no. I want to copy all objects with bool YES to another array. How can i do that? i have considered filtering the array using a ...
2
votes
5answers
275 views

Methods that return boolean values (java)

Okay, so my question is regarding boolean returns. For my Comp Sci homework, I have to make a course registration program using methods, and one of them is an add course method. Basically, you search ...
1
vote
3answers
96 views

trouble with boolean arrays and infinite loops

I working on a project called life, which is supposed to randomly display either a 1 for alive or 0 for dead. When I execute the program, the zeros and ones keep printing. I looked through the code ...
-1
votes
2answers
144 views

Null pointer setting 2d array object method to true [closed]

I have a 2d array which is of objects of the Node class. This is the Node class: public class Node { private boolean edge; private int parent; public Node() { edge = false; parent = 0; } ...
0
votes
2answers
73 views

Trying to Create a Basic Array Utility in C

I haven't worked with C in ages and as such I've forgotten an embarrassing amount about how C works. I am trying to create a header, 'arrayUtils.h' and a corresponding 'arrayUtils.c' where I define ...
0
votes
3answers
47 views

Excluding empty array variables, PHP

I have a lot of different forms on our website that have many fields I need the info from. I used an array called $fields and have the form sent to my email when submitted. But how do I keep the ...
1
vote
5answers
140 views

Long Java bit list wanted

In Java, I have an array of a million or so flags true/false to store in mind. Should BitSet help? Although it implements a Set, will it be possible to iterate its elements as fast as if it would be ...
0
votes
1answer
98 views

yui get checkbox returns array instead of boolean

When getting the checked state of a checkbox with yui ischecked = this.get('checked'); the checked variable returns [true] or [false]. Expected behavior would be a boolean value of true or false ...
-7
votes
5answers
114 views

java array of booleans [closed]

In java, is it possible to make an Array of booleans that when any boolean is set to a specified value,(example, false) all are set to the same value. (if ones value is false, all values will be set ...
0
votes
1answer
56 views

Boolean Referencing

I am processing lines of txt file which contains 4 boolean characteristics. I want to pass a boolean[] into a method with a reference to which line it came from (which line is defined by another ...
3
votes
5answers
1k views

calculate number of true (or false) elements in a bool array?

Suppose I have an array filled with Boolean values and I want to know how many of the elements are true. private bool[] testArray = new bool[10] { true, false, true, true, false, true, true, true, ...
0
votes
2answers
121 views

shifting the bits. What's happening in this code?

I've tried really hard, but I can't seem to understand what's going on in this code. Can anyone please shed some light? public class BitArrary { private Byte[] m_byteArray; private Int32 ...
2
votes
1answer
362 views

Convert Black and White bitmap to boolean array [duplicate]

Possible Duplicate: Fast way to convert a Bitmap into a Boolean array in C#? in my project I have a resource that is a black and white bitmap which I'm using to hold some 4x4 black and ...
3
votes
3answers
237 views

Checking if a given boolean array can match a target boolean array after performing a set of actions

This task was actually given to us as homework, but the requirement in the homework assignment was to write a recursive method that can return true or false if array A can match array B after we ...
4
votes
2answers
308 views

Problems with large bool array in C#

I decided to write a prime number generator as an easy excerise. The code is pretty simple: static void generatePrimes (long min, long max) { bool[] prime = new bool[max + 1]; ...
1
vote
4answers
210 views

How to add a setting from type bool array?

How can I add a setting in c# settings.settings that will be in Boolean array type?

1 2 3