1
vote
8answers
51 views
In java to remove an element in an array can you set it to null?
I am trying to make a remove method that works on an array implementation of a list.
Can I set the the duplicate element to null to remove it? Assuming that the list is in order.
…
0
votes
3answers
15 views
generate javadoc comments in eclipse
Is there a way to generate javadoc comments in eclipse?
0
votes
5answers
86 views
Finite State Machine program
I am tasked with creating a small program that can read in the definition of a FSM from input, read some strings from input and determine if those strings are accepted by the FSM b …
0
votes
4answers
65 views
Learning new languages: Programming Quizzes
Possible duplicates:
http://stackoverflow.com/questions/24692/where-can-you-find-fun-educational-programming-challenges
http://stackoverflow.com/questions/3088/best-ways-to-teach …
0
votes
5answers
51 views
How should I handle Inconsistent Objects in C++?
Say, I want to create a File class
class File{
public:
File(const char *file){
openFile(file);
}
~File();
isEmpty();
};
…
0
votes
1answer
45 views
PHP regex, check for a lot of the same letter, continuously
I want to prevent this kind of typing:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbnonsense
for that I want to check that a certain letter gets repeated more than 9 times:
preg_match('/.{9 …
0
votes
2answers
37 views
Perl regex replacement string special variable
I'm aware of the match, prematch, and postmatch predefined variables. I'm wondering if there is something similar for the evaluated replacement part of the s/// operator.
This wou …
0
votes
1answer
30 views
splitting function attributes
Hi would it be possible to correctly split function attributes using regex ?
i want an expression that splits all attributes in a comma seperated list. But the attributes themselve …
0
votes
3answers
68 views
Multithreaded application in Java?
I haven't worked with Java threads in several years so I have a very basic question about multithreading. I'm writing a java package that will be called by another language (matla …
1
vote
3answers
43 views
Tracing the longest path using Bellman-Ford with negative edge weights.
Hello All,
I'm currently finding the longest path in a directed acyclic positive-weighted graph by negating all edge weights and running Bellman Ford. This is working great. Howev …
