0
votes
2answers
28 views
how to partition the 2d arrays among the processes for “The Game of Life”
I am doing an assignment using MPI to implement Game of Life. I was wondering if I should use a block-row partitioning, a cyclic row partitioning or a block-checkerboard partitioning?
0
votes
4answers
52 views
What may cause losing object at the other end of a pointer in c++?
I have a class V, and another class N. An object of N will have an array of pointers to objects of class V (say V **vList). So, N has a function like
V **getList();
Now in some function of other …
0
votes
3answers
70 views
For each with my custom class won’t work
Hey everybody I'm working with java,
So I am writing a class called ordered set. It is a class that is cross between a set and a queue. In other words, it is a queue without any duplicates. So I know …
0
votes
4answers
25 views
Deleting from arraylist and exporting back to .buab file(Java)
Ive made an address book. I can currently write to the arraylist and save it back to the .buab file, but I cant delete from the arraylist and export it back to the .buab file?
Im pretty much stuck …
-2
votes
3answers
59 views
Text replacing with JS
I need to replace text entered in textarea with other characters, that I will call. For example, I need to replace the text, that I will enter to the textarea by clicking some button calls "change …
-5
votes
0answers
113 views
What is Church’s thesis? [closed]
Can anyone explain to me in a few simple English words what Church's thesis is? What is the equivalence with Turing machines? Can you also give me an example?
0
votes
3answers
97 views
recursive binary to decimal without pow() or loops
I am doing a C course.
I need to do a recursive XOR binary but I have some limitations.
I can't use loop or any math.h functions, nor can I call another function from the XOR function.
This is the …
0
votes
1answer
40 views
Homework: Generating Graphs
I need to simulate a discrete event simulator and for that I need to generate a network consisting of 30 nodes and then check if the generated graph is directed or not. Can anyone guide me on how to …
0
votes
4answers
149 views
Weird Scanf Issue
I am trying to finish a homework program that compares a string with a text file, so the user can essentially search the text file for the search term (string) in the file. I'm getting there :)
…
1
vote
6answers
221 views
How to spot empty parking spaces?
I want to do a final year B.Sc project on parking space detection. Can anybody give me some link related to it?
Any text-book, tutorial or anything?
What would be prerequisite for this project?
…
0
votes
2answers
23 views
Integer Problem in MIPS assembly
Using MIPS assembly if I prompt a user to input an integer how can I then take that integer and break it up into it's requisite parts?
Example:
# User inputs a number
li $v0, 5 …
1
vote
3answers
47 views
Java Swing questions regarding GridLayout and paintComponent methods
Within this program, we need to create an 8x8 grid of "LifeCell" widgets. The instructor did not mention that the widgets had to be an object of Shape so I went ahead and used the GridLayout class. …
0
votes
3answers
38 views
Java: Reading a file and storing data in an array, then find lowest decimal value
I have a homework problem Im 75% done with. My problem is that I cannot find a way to correctly display the correct value for the lowest population value and the province that has it. (Thanks in …
1
vote
2answers
49 views
upper bound, lower bound
What does it mean to prove an upper bound or lower bound to an algorithm?
0
votes
0answers
33 views
Simple FlowLayOut Help
I have a few questions for this program, one the first thing I am trying to do is make it so it could compare and see if the textfield is equal to the colorValues[x] position. The second issue is the …
