Tagged Questions
1
vote
6answers
251 views
Stuck in a loop ! :o
I'm trying to implement my own List system in Java.
the List class file :
package RoutingDemo.List;
/**
* A 2-way Linked-List to store generic elements.
*
*/
public class List {
/*
...
0
votes
5answers
186 views
Java: How to find hole in a one dimensional graph?
I know this has asked before but I couldn't make anything out of the answers so I hope someone will be able to explain this to me in a really easy way....
The Problem:
A man is standing in front of ...
0
votes
2answers
101 views
How to make infinite loop with awk
I have a program:
#!/bin/awk -f
BEGIN {
}
{
print "hello"
}
END {
}
It prints hello and then waits for enter to be pressed and then again prints hello.
i want to make it infinite ...
0
votes
2answers
516 views
Occurs check: cannot construct the infinite type?
I'm trying to write a function that, given two quadtrees representing images, will output another boolean quadtree "mask", with value True for a pixel if both quadtrees have the same color the ...
0
votes
3answers
146 views
Trying to create an infinite for loop that can stop using function doIt()
Hey guys, I'm new to javascript and I'm doing a project for my final in class. I need to make it so this game engine I manipulated causes the generation button to go for an infinite loop.
I also ...