User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T03:07:44Z http://stackoverflow.com/feeds/user/45963 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1884624/modifying-this-8-puzzle-code-to-print-the-intermediate-states-to-reach-the-soluti 0 Modifying this 8-puzzle code to print the intermediate states to reach the solution dmindreader 2009-12-10T22:44:44Z 2009-12-11T04:41:55Z <p><a href="http://www.8puzzle.com/8%5Fpuzzle%5Falgorithm.html" rel="nofollow">About the 8 Puzzle Problem</a></p> <p>// Breadth First Search Usage in the common Eight Puzzle Problem.</p> <pre><code>import java.util.*; class EightPuzzle { Queue&lt;String&gt; q = new LinkedList&lt;String&gt;(); // Use of Queue Implemented using LinkedList for Storing All the Nodes in BFS. Map&lt;String,Integer&gt; map = new HashMap&lt;String, Integer&gt;(); // HashMap is used to ignore repeated nodes public static void main(String args[]){ String str="087465132"; // Input the Board State as a String with 0 as the Blank Space EightPuzzle e = new EightPuzzle(); // New Instance of the EightPuzzle e.add(str,0); // Add the Initial State while(e.q.peek()!=null){ e.up(e.q.peek()); // Move the blank space up and add new state to queue e.down(e.q.peek()); // Move the blank space down e.left(e.q.peek()); // Move left e.right(e.q.remove()); // Move right and remove the current node from Queue } System.out.println("Solution doesn't exist"); } //Add method to add the new string to the Map and Queue void add(String str,int n){ if(!map.containsKey(str)){ map.put(str,n); q.add(str); } } /* Each of the Methods below Takes the Current State of Board as String. Then the operation to move the blank space is done if possible. After that the new string is added to the map and queue.If it is the Goal State then the Program Terminates. */ void up(String str){ int a = str.indexOf("0"); if(a&gt;2){ String s = str.substring(0,a-3)+"0"+str.substring(a-2,a)+str.charAt(a-3)+str.substring(a+1); add(s,map.get(str)+1); if(s.equals("123456780")) { System.out.println("Solution Exists at Level "+map.get(s)+" of the tree"); System.exit(0); } } } void down(String str){ int a = str.indexOf("0"); if(a&lt;6){ String s = str.substring(0,a)+str.substring(a+3,a+4)+str.substring(a+1,a+3)+"0"+str.substring(a+4); add(s,map.get(str)+1); if(s.equals("123456780")) { System.out.println("Solution Exists at Level "+map.get(s)+" of the tree"); System.exit(0); } } } void left(String str){ int a = str.indexOf("0"); if(a!=0 &amp;&amp; a!=3 &amp;&amp; a!=6){ String s = str.substring(0,a-1)+"0"+str.charAt(a-1)+str.substring(a+1); add(s,map.get(str)+1); if(s.equals("123456780")) { System.out.println("Solution Exists at Level "+map.get(s)+" of the tree"); System.exit(0); } } } void right(String str){ int a = str.indexOf("0"); if(a!=2 &amp;&amp; a!=5 &amp;&amp; a!=8){ String s = str.substring(0,a)+str.charAt(a+1)+"0"+str.substring(a+2); add(s,map.get(str)+1); if(s.equals("123456780")) { System.out.println("Solution Exists at Level "+map.get(s)+" of the tree"); System.exit(0); } } } } </code></pre> <p>I want to modify the code so that it prints the intermediate states used to reach the solution, instead of just saying the level on which the solution was reached.</p> <p>For example, given this board</p> <pre><code>1 4 2 3 0 5 6 7 8 </code></pre> <p>(as String 142305678)</p> <p>I want it to print:</p> <pre><code>1 4 2 3 0 5 6 7 8 </code></pre> <p>(as the String 142305678)</p> <pre><code>1 0 2 3 4 5 6 7 8 </code></pre> <p>(as the String 102345678)</p> <pre><code>0 1 2 3 4 5 6 7 8 </code></pre> <p>(as the String 012345678)</p> <p>By looking at the code, I believe this intermediate strings are getting stored via the add method into the Queue:</p> <pre><code>void add(String str,int n){ if(!map.containsKey(str)){ map.put(str,n); q.add(str); } } </code></pre> <p>I have no experience working with HashMap, how would I look into the intermediate states stored there? </p> http://stackoverflow.com/questions/1885313/using-the-keyset-method-in-hashmap 0 Using the keySet() method in HashMap dmindreader 2009-12-11T01:36:21Z 2009-12-11T03:06:34Z <p>I have a method that goes through the possible states in a board and stores them in a HashMap</p> <pre><code>void up(String str){ int a = str.indexOf("0"); if(a&gt;2){ String s = str.substring(0,a-3)+"0"+str.substring(a-2,a)+str.charAt(a-3)+str.substring(a+1); add(s,map.get(str)+1); if(s.equals("123456780")) { System.out.println("The solution is on the level "+map.get(s)+" of the tree"); //If I get here, I need to know the keys on the map // How can I store them and Iterate through them using // map.keySet()? } } </code></pre> <p>}</p> <p>I'm interested in the group of keys. What should I do to print them all?</p> <p><code>HashSet t = map.keySet()</code> is being rejected by the compiler as well as</p> <pre><code>LinkedHashSet t = map.keySet() </code></pre> http://stackoverflow.com/questions/1880587/enabling-assertions-in-netbeans 0 Enabling assertions in Netbeans dmindreader 2009-12-10T12:14:14Z 2009-12-10T17:46:49Z <p>I wanna do something like </p> <pre><code>java -enableassertions com.geeksanonymous.TestClass </code></pre> <p>How do I do this?</p> http://stackoverflow.com/questions/1881922/questions-about-javas-string-pool 7 Questions about Java's String pool dmindreader 2009-12-10T15:51:05Z 2009-12-10T17:06:05Z <p>Consider this code:</p> <pre><code>String first = "abc"; String second = new String ("abc"); </code></pre> <p>When using the <strong>new</strong> keyword, Java will create the <code>abc String</code> again right? Will this be stored on the regular heap or the <code>String</code> pool? How many <code>Strings</code> will end in the <code>String</code> pool?</p> http://stackoverflow.com/questions/1880298/how-can-i-pass-command-line-arguments-to-a-program-via-netbeans 0 How can I pass command line arguments to a program via Netbeans? dmindreader 2009-12-10T11:11:50Z 2009-12-10T11:18:57Z <p>I want to use my <code>args</code> array.</p> <p>I mean this array:</p> <pre><code>public static void main(String[] args) </code></pre> <p>Where can I run something like <code>java Test one two three</code>? </p> http://stackoverflow.com/questions/1878260/tackling-the-8-puzzle-problem-via-bfs 0 Tackling the 8-puzzle problem via BFS dmindreader 2009-12-10T02:18:35Z 2009-12-10T02:25:46Z <p>I've heard that the 8-puzzle problem can be tackled via BFS, but I don't understand how. I wanna know the intermediate steps that I need to get from a board like this:</p> <pre><code>3 1 2 6 4 5 0 7 8 </code></pre> <p>to </p> <pre><code>1 2 3 4 5 6 7 8 0 </code></pre> <p>Are the intermediate steps "levels" on a BFS search?</p> <p>By the way, this is basic homework, I don't care about optimality. </p> http://stackoverflow.com/questions/1878015/saving-each-of-this-boards-into-a-data-structure -4 Saving each of this boards into a Data Structure dmindreader 2009-12-10T01:03:33Z 2009-12-10T01:15:23Z <p>This is a dumb question and I feel embarrassed to ask it, but I'm pressed for time and I'm burnt out. </p> <p>I have this sambple input:</p> <pre><code>1 4 2 3 0 5 6 7 8 3 1 2 6 4 5 0 7 8 -1 -1 -1 </code></pre> <p>each group of numbers represents a board of the 8 puzzle, I don't know how many boards will appear on the text file. I only know its end is marked with -<code>1 -1 -1.</code></p> <p>I know the logic for this thing is simple, I'm just tired and can't put the code to work. Please put an explicit solution.</p> <p>the output for the first board should be:</p> <pre><code>142305678 </code></pre> <p>and for the second one </p> <pre><code>312645078 </code></pre> <p>I'm getting:</p> <pre><code>142142142 312312312 </code></pre> <p>Here's my code so far:</p> <pre><code>package puzzle; import java.io.*; import java.util.*; /** * * @author Administrator */ public class Main { /** * @param args the command line arguments */ public static void saveTheLine (String [] splittedLine ) { } public static void main(String[] args) throws IOException{ // TODO code application logic here FileReader fr = new FileReader("E://Documents and Settings//Administrator//My Documents//NetBeansProjects//8Puzzle//src//puzzle//ocho.in"); BufferedReader br = new BufferedReader(fr); /* String line = br.readLine(); while (!line.equals("-1 -1 -1")) { line= br.readLine(); //ArrayList &lt;String&gt; board = new ArrayList&lt;String&gt;(); String board = new String(""); while (!line.equals(null)) { board = board + line; line= br.readLine(); } System.out.println("a board is " + board); } */ while (true) { String line= br.readLine(); if (!line.equals("-1 -1 -1")){ if (line.equals(" ")) { continue; } String board = new String (" "); ArrayList&lt;String&gt; board2 = new ArrayList&lt;String&gt;(); for (int i =0; i&lt;3; i++){ String [] splittedLine = line.split(" "); board = line+board; for (int addToBoardIndex =0; addToBoardIndex &lt; splittedLine.length; addToBoardIndex++){ board2.add(splittedLine[addToBoardIndex]); } br.readLine(); } //System.out.println(board); for (String s : board2) { System.out.print(s); } System.out.println(" "); } else if (line.equals("-1 -1 -1")) { break; } } /*String line = br.readLine(); while (!line.equals("-1 -1 -1")) { //StringBuilder board = new StringBuilder(""); ArrayList&lt;String&gt; board = new ArrayList&lt;String&gt;(); for (int lineIndex =0; lineIndex&lt;3; lineIndex++){ line = br.readLine(); String [] splittedLine = line.split(" "); board.add(splittedLine [0]); board.add(splittedLine [1]); board.add(splittedLine [2]); } for (String boardIndex: board){ System.out.println(boardIndex); } String blankLine = br.readLine(); }*/ } } </code></pre> http://stackoverflow.com/questions/1875810/how-should-i-implement-this-hashmaps-equals-and-hashcode-methods-to-represent-an 1 How should I implement this HashMap's equals and hashCode methods to represent an automaton state? dmindreader 2009-12-09T18:23:45Z 2009-12-09T18:43:04Z <p>I want to put State objects (which are HashMaps with Character as key and State as Value into an ArrayList named allStates. Should I override the equals and hashCode methods here? Why? How? </p> <p>This code is for the Automaton and State classes I've built so far:</p> <pre><code>class State extends HashMap&lt;Character, State&gt;{ boolean isFinal; boolean isInitial; int stateId; State () { isInitial=false; isFinal = false; } public boolean equals (Object o){ boolean isEqual = false; State compare = (State)o; if ((compare.stateId)==this.stateId) { return true; } return isEqual; } public int hashCode() { int theHashCode = stateId%7; return theHashCode; } } class Automaton{ List &lt;State&gt; allStates; //private List&lt;State&gt; finalStates; int theInitialStateIntIndex; State actualState; char [] alphabet; Automaton() { allStates = new ArrayList&lt;State&gt;(); } public void setAllStates (int numberOfStates) { for (int i =0; i &lt;numberOfStates; i++) { State newState = new State(); newState.stateId = i; allStates.add(newState); } } public void setAlphabet (String alphabetLine){ alphabet = alphabetLine.toCharArray(); } public void markFinalStates (String [] finalStates){ for (int index =0; index&lt;finalStates.length; index++) { int aFinalStateId = Integer.parseInt(finalStates[index]); State aFinalState = allStates.get(aFinalStateId); aFinalState.isFinal = true; allStates.add(aFinalStateId, aFinalState); /*DEBUG*/ aFinalState = allStates.get(aFinalStateId); if ((aFinalState.isFinal)==true) System.out.println("THE STATE " + aFinalStateId + " IS MARKED AS FINAL"); } } public void markInitialState (int initialStateId) { State theInitialState = allStates.get(initialStateId); theInitialState.isInitial=true; allStates.add(initialStateId, theInitialState); theInitialStateIntIndex = initialStateId; /*DEBUG*/ System.out.println("THE INITIAL STATE ID IS " + initialStateId); theInitialState = allStates.get(initialStateId); if ((theInitialState.isInitial)==true) System.out.println("THE STATE " + initialStateId + " IS MARKED AS INITIAL"); } public void setTransitions(int stateId, String transitionsLine){ State theOneToChange = allStates.get(stateId); String [] statesToReachStringSplitted = transitionsLine.split(" "); for (int symbolIndex=0; symbolIndex&lt;statesToReachStringSplitted.length;symbolIndex++){ int reachedState= Integer.parseInt(statesToReachStringSplitted[symbolIndex]); theOneToChange.put(alphabet[symbolIndex],allStates.get(reachedState)); System.out.println("THE STATE " + stateId + " REACHES THE STATE " + reachedState + " WITH THE SYMBOL " + alphabet[symbolIndex]); } allStates.add(stateId, theOneToChange); } public int findInitialState(){ int index =0; cycle: for (; index&lt;allStates.size(); index++){ State s = allStates.get(index); if (s.isInitial==true) { break cycle; } } return index; } public void processString (String string) { StringBuilder stepString= new StringBuilder (string); int actualStateIntIndex; System.out.println("THE FOUND INITIAL ONE IS "+ theInitialStateIntIndex); State firstState = allStates.get(theInitialStateIntIndex); actualState = firstState; while (stepString.length()&gt;0){ Character characterToProcess = stepString.charAt(0); stepString.deleteCharAt(0); State nextState; nextState = ((State)actualState.get(characterToProcess)); // pasa al siguiente State actualState = nextState; actualStateIntIndex=allStates.indexOf(actualState); System.out.println("the actual state for " + stepString + " is " + actualStateIntIndex); if ((actualState.isFinal==true) &amp;&amp; (stepString.length()==0)) { System.out.println("THE STRING " + string + " IS ACCEPTED AT STATE " + actualStateIntIndex ); } else if (stepString.length()==0 &amp;&amp; (actualState.isFinal==false)){ System.out.println("THE STRING " + string + " IS REJECTED AT STATE " + actualStateIntIndex); } } } } </code></pre> http://stackoverflow.com/questions/1874991/moving-from-state-to-state-in-this-automaton-via-hashmap 0 Moving from state to state in this automaton via HashMap dmindreader 2009-12-09T16:16:52Z 2009-12-09T18:17:29Z <p>I'm using this method to move from a state to the next on this automaton simulator:</p> <pre><code>public void processString (String string){ StringBuilder stepString= new StringBuilder (string); int actualStateIntIndex; System.out.println("THE FOUND INITIAL ONE IS "+ theInitialStateIntIndex); State firstState = allStates.get(theInitialStateIntIndex); actualState = firstState; while (stepString.length()&gt;0){ Character characterToProcess = stepString.charAt(0); stepString.deleteCharAt(0); State nextState; nextState = ((State)actualState.get(characterToProcess)); // pasa al siguiente State actualState = nextState; actualStateIntIndex=allStates.indexOf(actualState); System.out.println("the actual state for " + stepString + " is " + actualStateIntIndex); if ((actualState.isFinal==true) &amp;&amp; (stepString.length()==0)) { System.out.println("THE STRING " + string + " IS ACCEPTED AT STATE " + actualStateIntIndex ); } else if (stepString.length()==0 &amp;&amp; (actualState.isFinal==false)){ System.out.println("THE STRING " + string + " IS REJECTED AT STATE " + actualStateIntIndex); } } </code></pre> <p>}</p> <p>Here:</p> <pre><code>State nextState; nextState = ((State)actualState.get(characterToProcess)); </code></pre> <p>I might be doing something wrong, but I don't get it. </p> <p>The automaton gets stuck on state 0 always, although the StringBuilder is correctly being processed, why?</p> <p>Here's the full code:</p> <pre><code> package afd; import java.io.*; import java.util.*; /** * * @author Administrator */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { // TODO code application logic here FileReader fr = new FileReader("E://Documents and Settings//Administrator//My Documents//NetBeansProjects//AFD//src//afd//dfa.in"); BufferedReader br = new BufferedReader(fr); String firstLine= br.readLine(); String [] firstLineSplitted = firstLine.split(" "); /*debug*/ //System.out.println("firstLine is " + firstLine); int numberOfTestCases = Integer.parseInt(firstLine); for (int indexOfTestCases =0; indexOfTestCases &lt; numberOfTestCases; indexOfTestCases++ ){ int aux; System.out.println("Case Number " + (aux = indexOfTestCases+1)); String caseStartLine = br.readLine(); /*debug*/ //System.out.println("caseStarLine is " + caseStartLine); String [] caseStartLineSplitted = caseStartLine.split(" "); int numberOfStates; int numberOfAlphabetSymbols; int numberOfFinalStates; numberOfStates = Integer.parseInt(caseStartLineSplitted[0]); numberOfAlphabetSymbols = Integer.parseInt(caseStartLineSplitted[1]); numberOfFinalStates = Integer.parseInt(caseStartLineSplitted[2]); Automaton automaton = new Automaton(); automaton.setAllStates(numberOfStates); // automaton.size = numberOfStates; // automaton.numberOfAlphabetSymbols = numberOfAlphabetSymbols; // automaton.numberOfFinalStates = numberOfFinalStates; //Automaton a = new Automaton(numberOfStates); String alphabetLine = br.readLine(); System.out.println("alphabetLine is " + alphabetLine); automaton.setAlphabet (alphabetLine); // automaton.alphabetSymbols =new StringBuffer(alphabetLine); for (int indexOfStates = 0; indexOfStates &lt; numberOfStates; indexOfStates++){ String transitionsLine = br.readLine(); /*debug*/ System.out.println("for the state " + indexOfStates + " transitionsLine is " + transitionsLine); automaton.setTransitions(indexOfStates,transitionsLine); /*String [] ijLineSplitted = ijLine.split(" "); int i = Integer.parseInt(ijLineSplitted[0]); int j = Integer.parseInt(ijLineSplitted[1]); */ } String finalStatesLine = br.readLine(); /*debug*/ System.out.println("finalStatesLine is " + finalStatesLine); String finalStatesLineSplitted [] = finalStatesLine.split(" "); automaton.markFinalStates(finalStatesLineSplitted); String initialStateAndNumberOfStringsLine = br.readLine(); /*debug*/ //System.out.println("initialStateAndNumberOfStringsLine is " +initialStateAndNumberOfStringsLine); String [] splittedInitialStateLine = initialStateAndNumberOfStringsLine.split(" "); int initialState = Integer.parseInt(splittedInitialStateLine[0]); int numberOfStrings = Integer.parseInt(splittedInitialStateLine[1]); automaton.markInitialState(initialState); for (int stringIndex =0; stringIndex&lt;numberOfStrings; stringIndex++){ String stringToProcess = br.readLine(); /*debug*/ System.out.println("stringToProcess is " + stringToProcess); automaton.processString(stringToProcess); } } } } class State extends HashMap&lt;Character, State&gt;{ boolean isFinal; boolean isInitial; int stateId; State () { isInitial=false; isFinal = false; } public boolean equals (Object o){ boolean isEqual = false; State compare = (State)o; if ((compare.stateId)==this.stateId) { return true; } return isEqual; } public int hashCode() { int theHashCode = stateId%7; return theHashCode; } } class Automaton{ List &lt;State&gt; allStates; //private List&lt;State&gt; finalStates; int theInitialStateIntIndex; State actualState; char [] alphabet; Automaton() { allStates = new ArrayList&lt;State&gt;(); }public void setAllStates (int numberOfStates) { for (int i =0; i &lt;numberOfStates; i++) { State newState = new State(); newState.stateId = i; allStates.add(newState); } } public void setAlphabet (String alphabetLine){ alphabet = alphabetLine.toCharArray(); } public void markFinalStates (String [] finalStates){ for (int index =0; index&lt;finalStates.length; index++) { int aFinalStateId = Integer.parseInt(finalStates[index]); State aFinalState = allStates.get(aFinalStateId); aFinalState.isFinal = true; allStates.add(aFinalStateId, aFinalState); /*DEBUG*/ aFinalState = allStates.get(aFinalStateId); if ((aFinalState.isFinal)==true) System.out.println("THE STATE " + aFinalStateId + " IS MARKED AS FINAL"); } } public void markInitialState (int initialStateId) { State theInitialState = allStates.get(initialStateId); theInitialState.isInitial=true; allStates.add(initialStateId, theInitialState); theInitialStateIntIndex = initialStateId; /*DEBUG*/ System.out.println("THE INITIAL STATE ID IS " + initialStateId); theInitialState = allStates.get(initialStateId); if ((theInitialState.isInitial)==true) System.out.println("THE STATE " + initialStateId + " IS MARKED AS INITIAL"); } public void setTransitions(int stateId, String transitionsLine){ State theOneToChange = allStates.get(stateId); String [] statesToReachStringSplitted = transitionsLine.split(" "); for (int symbolIndex=0; symbolIndex&lt;statesToReachStringSplitted.length;symbolIndex++){ int reachedState= Integer.parseInt(statesToReachStringSplitted[symbolIndex]); theOneToChange.put(alphabet[symbolIndex],allStates.get(reachedState)); System.out.println("THE STATE " + stateId + " REACHES THE STATE " + reachedState + " WITH THE SYMBOL " + alphabet[symbolIndex]); } allStates.add(stateId, theOneToChange); } public int findInitialState(){ int index =0; cycle: for (; index&lt;allStates.size(); index++){ State s = allStates.get(index); if (s.isInitial==true) { break cycle; } } return index; } public void processString (String string) { StringBuilder stepString= new StringBuilder (string); int actualStateIntIndex; System.out.println("THE FOUND INITIAL ONE IS "+ theInitialStateIntIndex); State firstState = allStates.get(theInitialStateIntIndex); actualState = firstState; while (stepString.length()&gt;0){ Character characterToProcess = stepString.charAt(0); stepString.deleteCharAt(0); State nextState; nextState = ((State)actualState.get(characterToProcess)); // pasa al siguiente State actualState = nextState; actualStateIntIndex=allStates.indexOf(actualState); System.out.println("the actual state for " + stepString + " is " + actualStateIntIndex); if ((actualState.isFinal==true) &amp;&amp; (stepString.length()==0)) { System.out.println("THE STRING " + string + " IS ACCEPTED AT STATE " + actualStateIntIndex ); } else if (stepString.length()==0 &amp;&amp; (actualState.isFinal==false)){ System.out.println("THE STRING " + string + " IS REJECTED AT STATE " + actualStateIntIndex); } } } } </code></pre> <p>Here's the input file:</p> <pre><code>4 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de </code></pre> <p>Edit: Here I'll explain the format for this input file</p> <p>The first line represents the number of test cases.</p> <p>Each test case starts with 3 integers, the first is the number of state for the automaton, next is the number of symbols in the alphabet and then the number of final states.</p> <p>The next line is the alphabet. The symbols appear together.</p> <p>Then there's a number of lines equal to the number of states that describe the transition function. The first line of this group of lines represents the transition function for the first state in the automaton (qo), the first element represents the state that's reached when the first symbol in the alphabet goes to this state, and so on. I had trouble understanding this from the original problem statement. This is the easiest way I've come to see it:</p> <p>The lines:</p> <pre><code>1 0 2 0 2 0 </code></pre> <p>equal:</p> <pre><code> AlphabetSymbol0 AlphabetSymbol1 State0 State1 State0 State1 State2 State0 State2 State2 State0 </code></pre> <p>Then there's a line that says which are the final states for the automaton.</p> <p>Then comes a line which says which is the initial state and how many input strings will come.</p> <p>Then come the lines with the input strings.</p> <p>The output of this program should be:</p> <p>C</p> <pre><code>ase Number 1 alphabetLine is ab for the state 0 transitionsLine is 1 0 THE STATE 0 REACHES THE STATE 1 WITH THE SYMBOL a THE STATE 0 REACHES THE STATE 0 WITH THE SYMBOL b for the state 1 transitionsLine is 2 0 THE STATE 1 REACHES THE STATE 2 WITH THE SYMBOL a THE STATE 1 REACHES THE STATE 0 WITH THE SYMBOL b for the state 2 transitionsLine is 2 0 THE STATE 2 REACHES THE STATE 2 WITH THE SYMBOL a THE STATE 2 REACHES THE STATE 0 WITH THE SYMBOL b finalStatesLine is 2 THE STATE 2 IS MARKED AS FINAL THE INITIAL STATE ID IS 0 THE STATE 0 IS MARKED AS INITIAL stringToProcess is abaa THE FOUND INITIAL ONE IS 0 the actual state for baa is 0 the actual state for aa is 0 the actual state for a is 0 the actual state for is 0 **THE STRING abaa IS ACCEPTED AT STATE 2** stringToProcess is aab THE FOUND INITIAL ONE IS 0 the actual state for ab is 0 the actual state for b is 0 the actual state for is 0 **THE STRING aab IS REJECTED AT STATE 0** stringToProcess is aba THE FOUND INITIAL ONE IS 0 the actual state for ba is 0 the actual state for a is 0 the actual state for is 0 **THE STRING aba IS ACCEPTED AT STATE 1** Case Number 2 alphabetLine is ade for the state 0 transitionsLine is 0 1 2 THE STATE 0 REACHES THE STATE 0 WITH THE SYMBOL a THE STATE 0 REACHES THE STATE 1 WITH THE SYMBOL d THE STATE 0 REACHES THE STATE 2 WITH THE SYMBOL e for the state 1 transitionsLine is 1 2 0 THE STATE 1 REACHES THE STATE 1 WITH THE SYMBOL a THE STATE 1 REACHES THE STATE 2 WITH THE SYMBOL d THE STATE 1 REACHES THE STATE 0 WITH THE SYMBOL e for the state 2 transitionsLine is 2 1 0 THE STATE 2 REACHES THE STATE 2 WITH THE SYMBOL a THE STATE 2 REACHES THE STATE 1 WITH THE SYMBOL d THE STATE 2 REACHES THE STATE 0 WITH THE SYMBOL e finalStatesLine is 1 2 THE STATE 1 IS MARKED AS FINAL THE STATE 2 IS MARKED AS FINAL THE INITIAL STATE ID IS 2 THE STATE 2 IS MARKED AS INITIAL stringToProcess is a THE FOUND INITIAL ONE IS 2 the actual state for is 0 **THE STRING a IS ACCEPTED AT STATE 2** stringToProcess is de THE FOUND INITIAL ONE IS 2 the actual state for e is 0 the actual state for is 0 **THE STRING de IS REJECTED AT STATE 0** </code></pre> <p>I'm getting wrong all the lines written in bold. </p> <p>I'm getting:</p> <pre><code>Case Number 1 THE STRING abaa IS ACCEPTED AT STATE 0 THE STRING aab IS ACCEPTED AT STATE 0 THE STRING aba IS ACCEPTED AT STATE 0 Case Number 2 THE STRING a IS ACCEPTED AT STATE 0 THE STRING de IS ACCEPTED AT STATE 0 </code></pre> <p>My automaton is accepting everything and getting stuck on state 0, why?</p> http://stackoverflow.com/questions/1870519/modelling-a-finite-deterministic-automaton-via-this-data-edit-with-new-code 2 Modelling a Finite Deterministic Automaton via this data *Edit with new code* dmindreader 2009-12-08T23:07:13Z 2009-12-09T15:38:57Z <p>I have this input file:</p> <pre><code>2 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de </code></pre> <p>The first line represents the number of test cases. </p> <p>Each test case starts with 3 integers, the first is the number of state for the automaton, next is the number of symbols in the alphabet and then the number of final states.</p> <p>The next line is the alphabet. The symbols appear together.</p> <p>Then there's a number of lines equal to the number of states that describe the transition function. The first line of this group of lines represents the transition function for the first state in the automaton (qo), the first element represents the state that's reached when the first symbol in the alphabet goes to this state, and so on. I had trouble understanding this from the original problem statement. This is the easiest way I've come to see it:</p> <p>The lines:</p> <pre><code>1 0 2 0 2 0 </code></pre> <p>equal:</p> <pre><code> AlphabetSymbol0 AlphabetSymbol1 State0 State1 State0 State1 State2 State0 State2 State2 State0 </code></pre> <p>Then there's a line that says which are the final states for the automaton.</p> <p>Then comes a line which says which is the initial state and how many input strings will come.</p> <p>Then come the lines with the input strings.</p> <p>The output of this program should be:</p> <pre><code>Case #1: accept 2 reject 0 reject 1 Case #2: accept 2 reject 0 </code></pre> <p>It should say if the String is accepted or rejected and on which state it ended.</p> <p>So far, I've only coded the work with the input. </p> <p><strong>I don't know how would be most convenient to represent the automaton.</strong> Should I create a Graph class? Should I simply use arrays? What logic would I apply to the arrays?</p> <p><strong>EDIT THIS IS THE CODE I'VE PRODUCED FOLLOWING MICHAEL BORGWARDT'S ADVICE. THE TRANSITIONS WORK BUT I DON'T KNOW WHY THE STRING GETS STUCK ON STATE 0 WHEN BEING PROCESSED.</strong> ** </p> <pre><code> /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package afd; import java.io.*; import java.util.*; /** * * @author Administrator */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { // TODO code application logic here FileReader fr = new FileReader("E://Documents and Settings//Administrator//My Documents//NetBeansProjects//AFD//src//afd//dfa.in"); BufferedReader br = new BufferedReader(fr); String firstLine= br.readLine(); String [] firstLineSplitted = firstLine.split(" "); /*debug*/ System.out.println("firstLine is " + firstLine); int numberOfTestCases = Integer.parseInt(firstLine); for (int indexOfTestCases =0; indexOfTestCases &lt; numberOfTestCases; indexOfTestCases++ ){ String caseStartLine = br.readLine(); /*debug*/ System.out.println("caseStarLine is " + caseStartLine); String [] caseStartLineSplitted = caseStartLine.split(" "); int numberOfStates; int numberOfAlphabetSymbols; int numberOfFinalStates; numberOfStates = Integer.parseInt(caseStartLineSplitted[0]); numberOfAlphabetSymbols = Integer.parseInt(caseStartLineSplitted[1]); numberOfFinalStates = Integer.parseInt(caseStartLineSplitted[2]); Automaton automaton = new Automaton(); automaton.setAllStates(numberOfStates); // automaton.size = numberOfStates; // automaton.numberOfAlphabetSymbols = numberOfAlphabetSymbols; // automaton.numberOfFinalStates = numberOfFinalStates; //Automaton a = new Automaton(numberOfStates); String alphabetLine = br.readLine(); System.out.println("alphabetLine is " + alphabetLine); automaton.setAlphabet (alphabetLine); // automaton.alphabetSymbols =new StringBuffer(alphabetLine); for (int indexOfStates = 0; indexOfStates &lt; numberOfStates; indexOfStates++){ String transitionsLine = br.readLine(); /*debug*/ System.out.println("transitionsLine is " + transitionsLine); automaton.setTransitions(indexOfStates,transitionsLine); /*String [] ijLineSplitted = ijLine.split(" "); int i = Integer.parseInt(ijLineSplitted[0]); int j = Integer.parseInt(ijLineSplitted[1]); */ } String finalStatesLine = br.readLine(); /*debug*/ System.out.println("finalStatesLine is " + finalStatesLine); String finalStatesLineSplitted [] = finalStatesLine.split(" "); automaton.markFinalStates(finalStatesLineSplitted); String initialStateAndNumberOfStringsLine = br.readLine(); /*debug*/ System.out.println("initialStateAndNumberOfStringsLine is " +initialStateAndNumberOfStringsLine); String [] splittedInitialStateLine = initialStateAndNumberOfStringsLine.split(" "); int initialState = Integer.parseInt(splittedInitialStateLine[0]); int numberOfStrings = Integer.parseInt(splittedInitialStateLine[1]); automaton.markInitialState(initialState); for (int stringIndex =0; stringIndex&lt;numberOfStrings; stringIndex++){ String stringToProcess = br.readLine(); /*debug*/ System.out.println("stringToProcess is " + stringToProcess); automaton.processString(stringToProcess); } } } } class State extends HashMap&lt;Character, State&gt;{ boolean isFinal; boolean isInitial; State () { isInitial=false; isFinal = false; } } class Automaton{ List &lt;State&gt; allStates; //private List&lt;State&gt; finalStates; int theInitialStateIntIndex; State currentState; char [] alphabet; Automaton() { allStates = new ArrayList&lt;State&gt;(); } public void setAllStates (int numberOfStates) { for (int i =0; i &lt;numberOfStates; i++) { State newState = new State(); allStates.add(newState); } } public void setAlphabet (String alphabetLine){ alphabet = alphabetLine.toCharArray(); } public void markFinalStates (String [] finalStates){ for (int index =0; index&lt;finalStates.length; index++) { int aFinalStateId = Integer.parseInt(finalStates[index]); State aFinalState = allStates.get(aFinalStateId); aFinalState.isFinal = true; allStates.add(aFinalStateId, aFinalState); /*DEBUG*/ aFinalState = allStates.get(aFinalStateId); if ((aFinalState.isFinal)==true) System.out.println("THE STATE " + aFinalStateId + " IS MARKED AS FINAL"); } } public void markInitialState (int initialStateId) { State theInitialState = allStates.get(initialStateId); theInitialState.isInitial=true; allStates.add(initialStateId, theInitialState); theInitialStateIntIndex = initialStateId; /*DEBUG*/ System.out.println("THE INITIAL STATE ID IS " + initialStateId); theInitialState = allStates.get(initialStateId); if ((theInitialState.isInitial)==true) System.out.println("THE STATE " + initialStateId + " IS MARKED AS INITIAL"); } public void setTransitions(int stateId, String transitionsLine){ State theOneToChange = allStates.get(stateId); String [] statesToReachStringSplitted = transitionsLine.split(" "); for (int symbolIndex=0; symbolIndex&lt;statesToReachStringSplitted.length;symbolIndex++){ int reachedState= Integer.parseInt(statesToReachStringSplitted[symbolIndex]); theOneToChange.put(alphabet[symbolIndex],allStates.get(reachedState)); System.out.println("THE STATE " + stateId + " REACHES THE STATE " + reachedState + " WITH THE SYMBOL " + alphabet[symbolIndex]); } allStates.add(stateId, theOneToChange); } public int findInitialState(){ int index =0; cycle: for (; index&lt;allStates.size(); index++){ State s = allStates.get(index); if (s.isInitial==true) { break cycle; } } return index; } public void processString (String string) { StringBuilder stepString= new StringBuilder (string); int actualStateIntIndex; System.out.println("THE FOUND INITIAL ONE IS "+ theInitialStateIntIndex); State firstState = allStates.get(theInitialStateIntIndex); State actualState = firstState; while (stepString.length()&gt;0){ Character characterToProcess = stepString.charAt(0); stepString.deleteCharAt(0); State nextState; nextState = ((State)actualState.get(characterToProcess)); // pasa al siguiente State actualState = nextState; actualStateIntIndex=allStates.indexOf(actualState); System.out.println("the actual state for " + stepString + " is " + actualStateIntIndex); if ((actualState.isFinal==true) &amp;&amp; (stepString.length()==0)) { System.out.println("THE STRING " + string + " IS ACCEPTED AT STATE " + actualStateIntIndex ); } else if (stepString.length()==0 &amp;&amp; (actualState.isFinal==false)){ System.out.println("THE STRING " + string + " IS REJECTED AT STATE " + actualStateIntIndex); } } } } </code></pre> http://stackoverflow.com/questions/1871403/marking-the-initial-state-of-this-finite-automaton 0 Marking the Initial State of this Finite Automaton dmindreader 2009-12-09T03:23:52Z 2009-12-09T03:36:42Z <p>I'm working on a finite deterministic automaton based on <a href="http://stackoverflow.com/questions/1870519/modelling-a-finite-deterministic-automaton-via-this-data">this</a>. </p> <p>From this code:</p> <pre><code> public void markInitialState (int initialStateId) { State theInitialState = allStates.get(initialStateId); theInitialState.isInitial=true; allStates.add(initialStateId, theInitialState); /*DEBUG*/ System.out.println(" THE INITIAL STATE ID IS " + initialStateId); theInitialState = allStates.get(initialStateId); if ((theInitialState.isInitial)==true) System.out.println("THE STATE " + theInitialState + " IS MARKED AS INITIAL"); } </code></pre> <p>I'm getting the line:</p> <pre><code>THE STATE {d=(this Map), e=(this Map), a=(this Map)} IS MARKED AS INITIAL </code></pre> <p>On the line that should say:</p> <pre><code>THE STATE 2 IS MARKED AS INITIAL </code></pre> <p>Why is the Map doing this?</p> <p>I don't get why it's marking the final states correctly using the same aproach.</p> <p>The Input file is:</p> <pre><code>4 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de </code></pre> <p>The code:</p> <pre><code>/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package afd; import java.io.*; import java.util.*; /** * * @author Administrator */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { // TODO code application logic here FileReader fr = new FileReader("E://Documents and Settings//Administrator//My Documents//NetBeansProjects//AFD//src//afd//dfa.in"); BufferedReader br = new BufferedReader(fr); String firstLine= br.readLine(); String [] firstLineSplitted = firstLine.split(" "); /*debug*/ System.out.println("firstLine is " + firstLine); int numberOfTestCases = Integer.parseInt(firstLine); for (int indexOfTestCases =0; indexOfTestCases &lt; numberOfTestCases; indexOfTestCases++ ){ String caseStartLine = br.readLine(); /*debug*/ System.out.println("caseStarLine is " + caseStartLine); String [] caseStartLineSplitted = caseStartLine.split(" "); int numberOfStates; int numberOfAlphabetSymbols; int numberOfFinalStates; numberOfStates = Integer.parseInt(caseStartLineSplitted[0]); numberOfAlphabetSymbols = Integer.parseInt(caseStartLineSplitted[1]); numberOfFinalStates = Integer.parseInt(caseStartLineSplitted[2]); Automaton automaton = new Automaton(); automaton.setAllStates(numberOfStates); // automaton.size = numberOfStates; // automaton.numberOfAlphabetSymbols = numberOfAlphabetSymbols; // automaton.numberOfFinalStates = numberOfFinalStates; //Automaton a = new Automaton(numberOfStates); String alphabetLine = br.readLine(); System.out.println("alphabetLine is " + alphabetLine); automaton.setAlphabet (alphabetLine); // automaton.alphabetSymbols =new StringBuffer(alphabetLine); for (int indexOfStates = 0; indexOfStates &lt; numberOfStates; indexOfStates++){ String transitionsLine = br.readLine(); /*debug*/ System.out.println("transitionsLine is " + transitionsLine); automaton.setTransitions(indexOfStates,transitionsLine); /*String [] ijLineSplitted = ijLine.split(" "); int i = Integer.parseInt(ijLineSplitted[0]); int j = Integer.parseInt(ijLineSplitted[1]); */ } String finalStatesLine = br.readLine(); /*debug*/ System.out.println("finalStatesLine is " + finalStatesLine); String finalStatesLineSplitted [] = finalStatesLine.split(" "); automaton.markFinalStates(finalStatesLineSplitted); String initialStateAndNumberOfStringsLine = br.readLine(); /*debug*/ System.out.println("initialStateAndNumberOfStringsLine is " +initialStateAndNumberOfStringsLine); String [] splittedInitialStateLine = initialStateAndNumberOfStringsLine.split(" "); int initialState = Integer.parseInt(splittedInitialStateLine[0]); int numberOfStrings = Integer.parseInt(splittedInitialStateLine[1]); automaton.markInitialState(initialState); for (int stringIndex =0; stringIndex&lt;numberOfStrings; stringIndex++){ String stringToProcess = br.readLine(); /*debug*/ System.out.println("stringToProcess is " + stringToProcess); } } } } class State extends HashMap&lt;Character, State&gt;{ boolean isFinal; boolean isInitial; State () { isInitial=false; isFinal = false; } } class Automaton{ List &lt;State&gt; allStates; //private List&lt;State&gt; finalStates; State initialState; State currentState; char [] alphabet; Automaton() { allStates = new ArrayList&lt;State&gt;(); } public void setAllStates (int numberOfStates) { for (int i =0; i &lt;numberOfStates; i++) { State newState = new State(); allStates.add(newState); } } public void setAlphabet (String alphabetLine){ alphabet = alphabetLine.toCharArray(); } public void markFinalStates (String [] finalStates){ for (int index =0; index&lt;finalStates.length; index++) { int aFinalStateId = Integer.parseInt(finalStates[index]); State aFinalState = allStates.get(aFinalStateId); aFinalState.isFinal = true; allStates.add(aFinalStateId, aFinalState); /*DEBUG*/ aFinalState = allStates.get(aFinalStateId); if ((aFinalState.isFinal)==true) System.out.println("THE STATE " + aFinalStateId + " IS MARKED AS FINAL"); } } public void markInitialState (int initialStateId) { State theInitialState = allStates.get(initialStateId); theInitialState.isInitial=true; allStates.add(initialStateId, theInitialState); /*DEBUG*/ System.out.println(" THE INITIAL STATE ID IS " + initialStateId); theInitialState = allStates.get(initialStateId); if ((theInitialState.isInitial)==true) System.out.println("THE STATE " + theInitialState + " IS MARKED AS INITIAL"); } public void setTransitions(int stateId, String transitionsLine){ State theOneToChange = allStates.get(stateId); String [] statesToReachStringSplitted = transitionsLine.split(" "); for (int symbolIndex=0; symbolIndex&lt;statesToReachStringSplitted.length;symbolIndex++){ int reachedState= Integer.parseInt(statesToReachStringSplitted[symbolIndex]); theOneToChange.put(alphabet[symbolIndex],allStates.get(reachedState)); System.out.println("THE STATE " + stateId + " REACHES THE STATE " + reachedState + " WITH THE SYMBOL " + alphabet[symbolIndex]); } allStates.add(stateId, theOneToChange); } public boolean processString (String string) { boolean accepted = false; return accepted; } } </code></pre> http://stackoverflow.com/questions/1870900/why-is-set-marked-by-the-compiler-as-not-a-known-variable-in-this-context 1 Why is Set marked by the compiler as "not a known variable in this context"? dmindreader 2009-12-09T00:39:59Z 2009-12-09T00:41:20Z <p>This is my code;</p> <pre><code>import java.util.*; class State extends HashMap&lt;Character, State&gt;{ boolean isFinal; State () { isFinal = false; } } class Automaton{ private Set&lt;State&gt; allStates; private Set&lt;State&gt; finalStates; private State initialState; private State currentState; private Set&lt;Character&gt; alphabet; Automaton() { allStates = new Set&lt;State&gt;(); } } </code></pre> http://stackoverflow.com/questions/1869948/killing-this-numberformatexception 1 Killing this NumberFormatException dmindreader 2009-12-08T21:25:39Z 2009-12-08T23:06:37Z <p>I'm getting a NumberFormatException on the Integer.parseInt() method. I know this exception is produced when something like "ab" is passed to the method, but I'm at a loss finding where this is happening. How can I fix this?</p> <p>I'm using Netbeans and trying to debug putting a watch on the <code>caseStartLineSplitted[0]</code> variable and then hitting f7, but the code goes through things like the Arrays class, which I don't care about. How can I make it go straight to where <code>caseStartLineSplitted[0]</code>gets changed?</p> <p>The input file is: </p> <pre><code>2 3 2 1 ab 1 0 2 0 2 0 2 0 3 abaa aab aba 3 3 2 ade 0 1 2 1 2 0 2 1 0 1 2 2 2 a de /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package afd; import java.io.*; import java.util.*; /** * * @author Administrator */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws IOException { // TODO code application logic here FileReader fr = new FileReader("E://Documents and Settings//Administrator//My Documents//NetBeansProjects//AFD//src//afd//dfa.in"); BufferedReader br = new BufferedReader(fr); String firstLine= br.readLine(); String [] firstLineSplitted = firstLine.split(" "); /*debug*/ System.out.println(firstLine); int numberOfTestCases = Integer.parseInt(firstLine); for (int indexOfTestCases =0; indexOfTestCases &lt; numberOfTestCases; indexOfTestCases++ ){ String caseStartLine = br.readLine(); /*debug*/ System.out.println(caseStartLine); String [] caseStartLineSplitted = caseStartLine.split(""); int numberOfStates = Integer.parseInt(caseStartLineSplitted[0]); int numberOfAlphabetSymbols = Integer.parseInt(caseStartLineSplitted[1]); //int numberOfFinalStates = Integer.parseInt(caseStartLineSplitted[2]); String alphabetLine = br.readLine(); for (int indexOfStates = 0; indexOfStates &lt; numberOfStates; indexOfStates++){ String ijLine = br.readLine(); String [] ijLineSplitted = ijLine.split(" "); int i = Integer.parseInt(ijLineSplitted[0]); int j = Integer.parseInt(ijLineSplitted[1]); } String finalStatesLine = br.readLine(); String finalStatesLineSplitted [] = finalStatesLine.split(" "); ArrayList&lt;Integer&gt; finalStates = new ArrayList&lt;Integer&gt;(); for (int conversionIndex =0; conversionIndex &lt; finalStatesLineSplitted.length; ) } } } </code></pre> http://stackoverflow.com/questions/402579/creating-a-substring-on-linux-ia-32-assembler-gas 1 creating a substring on Linux IA-32 assembler (gas) dmindreader 2008-12-31T09:00:34Z 2009-11-17T20:41:32Z <p>I wanna create a substring (ministring) of 3 asciz chars out of my original (thestring). The thing ain't printing when being run so I don't know what the hell I'm I doing. Why it ain't printing? Am I creating the ministring correctly? </p> <pre><code>.section .data thestring: .asciz "111010101" ministring: .asciz "" formatd: .asciz "%d" formats: .asciz "%s" formatc: .asciz "%c" .section .text .globl _start _start: xorl %ecx, %ecx ciclo:movb thestring(%ecx,1), %al movzbl %al, %eax movl %eax, ministring(%ecx,1) incl %ecx cmpl $3, %ecx jl ciclo movl thestring, %eax pushl %eax pushl $formats call printf addl $4, %esp movl $1, %eax movl $0, %ebx int $0x80 </code></pre> http://stackoverflow.com/questions/399356/splitting-a-string-on-att-ia-32-linux-assembler-gas 2 Splitting a string on AT&T IA-32 Linux Assembler (gas) dmindreader 2008-12-30T02:13:19Z 2009-11-17T20:40:57Z <pre><code>.section .data astring: .asciz "11010101" format: .asciz "%d\n" .section .text .globl _start _start: xorl %ecx, %ecx movb astring(%ecx,1), %al movzbl %al, %eax pushl %eax pushl $format call printf addl $8, %esp movl $1, %eax movl $0, %ebx int $0x80 </code></pre> <p>Suppose I wanna break the .asciz string 1101011 and get it's first one. How do I go about it? The code above ain't working, it prints 49 or something.</p> http://stackoverflow.com/questions/1657437/about-the-sun-certified-java-programmer-plus-certification 0 About the Sun Certified Java Programmer "Plus" Certification dmindreader 2009-11-01T15:29:45Z 2009-11-04T12:15:00Z <p>I read <a href="http://stackoverflow.com/questions/1121618/sun-certification-plus-vs-old-certification-system">this</a> and was left wondering: </p> <p>a) When is the new exam going to be released? Google search hasn't helped at all. </p> <p>b) How different it is from the old exam? Does anyone knows where to find the impressions of the beta testers? Is there any beta tester around?</p> <p>c) What should I study to pass this thing? I suppose it would be more like the SCJD than the old SCJP.</p> http://stackoverflow.com/questions/1621563/graphical-computing-problem-signature-comparisons 0 Graphical Computing Problem: Signature Comparisons dmindreader 2009-10-25T17:59:02Z 2009-10-25T19:18:38Z <p>As part of a college project, I'd like to deploy a system that compares signatures to check their similarities/validity. </p> <p>Questions:</p> <p>a)What algorithms are used on this branch of graphical computing (image comparison)?</p> <p>b)Are there any open-source projects from which I could learn/participate?</p> <p>c)Is there any commercial software available for signature comparisons?</p> http://stackoverflow.com/questions/855361/is-time-an-actor-in-a-use-case 2 Is TIME an actor in a use case? dmindreader 2009-05-12T23:14:34Z 2009-09-26T19:53:45Z <p>Alright, on a true false question:</p> <p>a)The actors of a system are only represented by humans or another software components.</p> <p>I said TRUE, and the teacher marked it as wrong, not because he considered that I missed hardware components (which I guess I would partially concede), but because, on his words:</p> <p>"TIME is also an actor." </p> <p>How would an use case diagram consider TIME as an actor?? </p> <p>Please refer to any bibliography which considers time an actor. I haven't found any, and truthfully I don't think it makes any sense. Time doesn't act by itself, it's either a system or a person that works on a schedule. </p> http://stackoverflow.com/questions/1452509/what-kind-of-applications-are-built-using-python/1452528#1452528 0 Answer by dmindreader for What kind of applications are built using Python? dmindreader 2009-09-21T01:34:26Z 2009-09-21T01:34:26Z <p>Bittorrent was built on Python.</p> http://stackoverflow.com/questions/1447193/graph-theory-question 0 Graph Theory Question dmindreader 2009-09-18T23:13:00Z 2009-09-19T00:22:03Z <p>This is a two part question. </p> <p>In a reunion of 20 people, there are 48 pairs of people that know each other.</p> <p>a) Justify why there is, at least, one person who knows, at most, other 4 persons.</p> <p>b) Suppose there is a single person who knows at most other 4 persons. How many people does that person knows exactly?</p> <p>I'm unsure about my answers: </p> <p>a) I suppose there a vertex with degree 4 and 19 with degree 5.</p> <p>19*5 + 4 = 99</p> <p>and, as the summation of the degrees of the vertexes should give 2*E, with E being the number of edges, </p> <p>and </p> <p>99 > 96 = 2*E</p> <p>I conclude this is not possible.</p> <p>b) I think this problem is poorly stated. If there is a single person that knows "at most" 4 other persons, then that person can know 4, 3, 2 or 1 persons. I can't know exactly.</p> http://stackoverflow.com/questions/1055098/how-do-i-design-the-transition-functions-for-this-pushdown-automaton 1 How do I design the transition functions for this pushdown automaton? dmindreader 2009-06-28T15:20:53Z 2009-09-18T23:26:10Z <p>I'm studying for a test on PDA, and I want to know how to design a pushdown automaton that recognizes the following language:</p> <pre><code>L = {a^max(0,n-m)b^n a^m| n,m &gt;=0} </code></pre> <p>How can I design a transition function to recognize if n-m is greater than 0?</p> <p>And please, if you have some course materials with exercises of this level solved, put a link, my course materials suck and I'm facing a pretty tough test in two days.</p> http://stackoverflow.com/questions/924065/what-component-do-i-need-to-get-this-calendar 1 What component do I need to get this Calendar? dmindreader 2009-05-29T01:53:35Z 2009-09-17T12:49:00Z <p>I'm trying to get the Calendar from <a href="http://www.netbeans.org/kb/docs/web/calendar.html" rel="nofollow">here</a> running.</p> <p>I've no experience working with GlassFish or the JavaServer Faces components, and so I'm lost when I read the tutorial saying that the Calendar should appear on my Palette? Is it my Netbeans Palette or is elsewhere? I downloaded GlassFish and ran the .jar but I don't see any changes on my Netbeans palette.</p> <p>Shouldn't the Woodstock component, downloaded separately, be enough at least to get the Calendar appearing on the palette? Plus, where should I place that module to get it running? It's a nbm file.</p> <p>Edit: The Woodstock component is now installed. How do I get it on my palette from Palette Manager? I'm stuck here: <a href="http://yfrog.com/07screenshotoxhp" rel="nofollow">screenshot</a></p> http://stackoverflow.com/questions/885411/how-do-i-build-this-finite-automaton 1 How do I build this finite automaton? dmindreader 2009-05-19T22:50:22Z 2009-08-30T06:16:55Z <p>I'm studying for a Discrete Mathematics test and I found this exercise which I can't figure out.</p> <p>"Build a basic finite automaton (DFA,NFA,NFA-lambda) for the language in the alphabet Sigma = {0,1,2} where the sum of the elements in the string is even AND this sum is more than 3"</p> <p>I have tried using Kleene's Theorem concatenating two languages like concatenating the one associated with this regular expression:</p> <p><code>(00 U 11 U 22 U 02 U 20)*</code> - the even elements</p> <p>with this one</p> <p><code>(22 U 1111 U 222 U 2222)*</code> - the ones whose sum is greater than 3</p> <p>Does this make any sense?? I think my regex are flabby.</p> http://stackoverflow.com/questions/1351746/find-a-tangent-point-on-circle/1351752#1351752 1 Answer by dmindreader for Find a tangent point on circle? dmindreader 2009-08-29T15:55:06Z 2009-08-29T16:00:54Z <p>Use the x,y coordinates of the intersecting equations (the one of the circle and the one of the line). That's the point.</p> <p>If you have only one end point from which to draw the line you'll get two different points, as there will be two different tangent lines, one up and one down.</p> http://stackoverflow.com/questions/1344304/why-do-newbie-programmers-seem-to-shy-away-from-libraries/1344306#1344306 9 Answer by dmindreader for Why do newbie programmers seem to shy away from libraries? dmindreader 2009-08-27T23:42:36Z 2009-08-27T23:42:36Z <p>It's the learning curve.</p> http://stackoverflow.com/questions/1021882/how-can-i-construct-a-grammar-that-generates-this-language 0 How can I construct a grammar that generates this language? dmindreader 2009-06-20T15:48:49Z 2009-08-24T20:44:07Z <p>I'm studying for a finite automata &amp; grammars test and I'm stuck with this question:</p> <pre><code>Construct a grammar that generates L: L = {a^n b^m c^m+n|n&gt;=0, m&gt;=0} </code></pre> <p>I believe my productions should go along this lines:</p> <pre><code> S-&gt;aA | aB B-&gt;bB | bC C-&gt;cC | c Here's where I have doubts </code></pre> <p>How can my production for C remember the numbers of m and n? I'm guessing this must rather be a context-free grammar, if so, how should it be?</p> http://stackoverflow.com/questions/1323633/when-do-instance-init-blocks-get-called 1 When do instance init blocks get called? dmindreader 2009-08-24T17:15:48Z 2009-08-24T17:33:55Z <p>Consider this code:</p> <pre><code>public class Main { static String s = "-"; public static void main (String [] args){ go(); System.out.println(s); Main m = new Main(); } {go();} static {go();} static void go(){s+="s";} } </code></pre> <p>Its output is:</p> <pre><code>-ss </code></pre> <p>the instance init block is never called, why? </p> http://stackoverflow.com/questions/1180079/whys-this-program-giving-a-runtime-error-on-jcreator-but-not-on-netbeans 0 why's this program giving a runtime error on jcreator but not on netbeans? dmindreader 2009-07-24T20:46:52Z 2009-08-23T19:24:45Z <p>This is my solution for sphere's online judge <a href="https://www.spoj.pl/problems/PALIN/" rel="nofollow">palin problem</a>. It runs fine on Netbeans, but the judge is rejecting my answer saying it gives a RuntimeError. I tried it on JCreator and it says:</p> <pre><code>Exception in thread "main" java.lang.NumberFormatException: For input string: "" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48) at java.lang.Integer.parseInt(Integer.java:468) at java.lang.Integer.parseInt(Integer.java:497) at Main.main(Main.java:73) </code></pre> <p>I'm not passing an empty string for it to parse, why is this?</p> <p>The code:</p> <pre><code>import java.io.*; import java.util.*; class Main { public static int firstPalinLargerThanNum(int num){ int foundPalin =0; int evalThisNum = ++num; while (true){ if (isPalin(evalThisNum)) break; evalThisNum++; } foundPalin = evalThisNum; return foundPalin; } public static boolean isPalin(int evalThisNum){ boolean isItPalin = false; int dig=0; int rev=0; int n = evalThisNum; while (evalThisNum &gt; 0) { dig = evalThisNum % 10; rev = rev * 10 + dig; evalThisNum = evalThisNum / 10; } if (n == rev) { isItPalin=true; } return isItPalin; } public static void main(String args[]) throws java.lang.Exception{ BufferedReader r1 = new BufferedReader(new InputStreamReader(System.in)); /*BufferedReader r1 = new BufferedReader (new FileReader(new File ("C:\\Documents and Settings\\Administrator\\My Documents\\NetBeansProjects\\Sphere\\src\\sphere\\sphere\\PALIN_INPUT.txt")));*/ String read = r1.readLine(); int numberOfTestCases = Integer.parseInt(read); for (int i=0; i&lt;numberOfTestCases;i++){ read = r1.readLine(); if (read!=null){ int num = Integer.parseInt(read); System.out.println(firstPalinLargerThanNum(num)); } } } } </code></pre> <p>Input:</p> <pre><code>2 808 2133 </code></pre> <p>line 73 is: <code>int num = Integer.parseInt(read);</code></p> http://stackoverflow.com/questions/1293823/prime-generator-optimization/1294023#1294023 3 Answer by dmindreader for prime generator optimization dmindreader 2009-08-18T13:51:37Z 2009-08-18T14:32:51Z <p>From <a href="http://www.algorithmist.com/index.php/SPOJ%5FPRIME1" rel="nofollow">Algorithmist's proposed solution</a></p> <blockquote> <p>This is a modification of the standard Sieve of Eratosthenes. It would be highly inefficient, using up far too much memory and time, to run the standard sieve all the way up to n. <strong>However, no composite number less than or equal to n will have a factor greater than sqrt{n}, so we only need to know all primes up to this limit</strong>, which is no greater than 31622 (square root of 10^9). This is accomplished with a sieve. <strong>Then, for each query, we sieve through only the range given, using our pre-computed table of primes to eliminate composite numbers</strong>.</p> </blockquote> <p>This problem has also appeared on UVA's and Sphere's online judges. <a href="https://www.spoj.pl/problems/PRIME1/" rel="nofollow">Here's how it's enunciated on Sphere.</a></p> http://stackoverflow.com/questions/1252440/solving-this-nullpointerexception-on-javas-binarysearch 1 solving this NullPointerException on java's binarySearch dmindreader 2009-08-09T22:08:56Z 2009-08-09T22:40:14Z <p>I'm solving sphere's online judge <a href="https://www.spoj.pl/problems/SHPATH/" rel="nofollow">shortest path problem</a>. This bit of code is giving me trouble:</p> <pre><code>int sourceIndex = Arrays.binarySearch(citiesIds,source); int destinationIndex= Arrays.binarySearch(citiesIds, destination); double [] distancesFromSource = g.distancesFrom(sourceIndex); int destinationDistance = (int)distancesFromSource[destinationIndex]; System.out.println(destinationDistance); </code></pre> <p>How can I avoid this <code>NullPointerException</code>?</p> <pre><code>The complete code: /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package tshpath; import java.io.*; import java.util.*; class Graph { private double [][]edges; /*el argumento es el número de vértices en este grafo*/ public Graph(int vertices){ edges = new double [vertices][vertices]; } /*añade una arista de peso 1 a partir de i hasta j*/ public void addEdge(int i, int j){ edges[i][j]=1; } /*añade aristas de peso 1 de i hasta j y de j hasta i*/ public void addUndirectedEdge (int i, int j){ edges[i][j]=1; edges[j][i]=1; } /*retorna el costo de la arista de i y j*/ public double getEdge(int i, int j){ return edges[i][j]; } /*retorna true si hay una arista entre i y j*/ public boolean hasEdge (int i, int j){ return edges[i][j] !=0.0; } /*fija el peso de la arista entre i y j*/ public void setEdge (int i, int j, double weight){ edges [i][j] = weight; } /*fija el peso de la arista entre i y j y entre j e i*/ public void setUndirectedEdge (int i, int j, double weight){ edges[i][j] = weight; edges[j][i] = weight; } /*retorna el número de vértices en este grafo*/ public int size() { return edges.length; } /*retorna una lista de los vecinos del vértice i*/ public List &lt;Integer&gt; neighbors (int i){ List &lt;Integer&gt; result = new ArrayList&lt;Integer&gt;(); for (int j=0; j&lt;size();j++){ if (hasEdge(i,j)){ result.add(j); } } return result; } /*retorna 0 si i y j son idénticos, retorna infinito si no hay arista entre ellos o si * el peso entre las aristas si hay uno*/ public double getCost(int i , int j){ if (i==j){ return 0.0; } if (edges[i][j]==0.0){ return Double.POSITIVE_INFINITY; } return edges[i][j]; } /*dijkstra, retorna el índice del elemento más pequeño de distances, ignorando * aquellos en visited*/ protected int cheapest (double [] distances, boolean [] visited){ int best =-1; for (int i=0; i&lt;size(); i++){ if (!visited[i] &amp;&amp; ((best &lt; 0) || (distances[i] &lt; distances[best]))) { best =i; } } return best; } public double [] distancesFrom (int source){ double [] result = new double[size()]; java.util.Arrays.fill(result, Double.POSITIVE_INFINITY); result [source]=0; boolean []visited = new boolean [size()]; for (int i =0; i&lt;size();i++){ int vertex = cheapest (result,visited); visited [vertex]=true; for (int j =0; j&lt;size();j++){ result [j] = Math.min(result[j], result[vertex]+getCost(vertex,j)); } } return result; } /*test Graph*/ /*public static void main(String args[]){ Graph g = new Graph(5); g.setEdge(1,2,1); g.setEdge(1,3,3); g.setEdge(2,1,1); g.setEdge(2,3,1); g.setEdge(2,4,4); g.setEdge(3,1,3); g.setEdge(3,2,1); g.setEdge(3,4,1); g.setEdge(4,2,4); g.setEdge(4,3,1); double [] distancesFrom1 = g.distancesFrom(1); double [] distancesFrom2 = g.distancesFrom(2); System.out.println((int)distancesFrom1[4]); System.out.println((int)distancesFrom2[4]); }*/ } public class Main { /** * @param args the command line arguments */ public static void main(String[] args) throws Exception { // TODO code application logic here BufferedReader r = new BufferedReader (new FileReader(new File("C:\\Documents and Settings\\Administrator\\My Documents\\NetBeansProjects\\TSHPATH\\src\\tshpath\\TSHPATHInput.txt"))); //BufferedReader r1 = new BufferedReader (new InputStreamReader(System.in)); String line = r.readLine(); // System.out.println(line); //Linea de prueba int s = Integer.parseInt(line); for (int testIndex=0; testIndex&lt;s; testIndex++){ String [] citiesIds = new String[10000]; line = r.readLine(); //System.out.println(line); //Linea de prueba int n = Integer.parseInt(line); int graphSize = n +1; // por el problema de indexación desde 0 en el arreglo Graph g = new Graph (graphSize); for (int cityIndex=0; cityIndex&lt;n;cityIndex++){ line = r.readLine(); // System.out.println(line); //Linea de prueba String NAME = line; int auxCityIndex = cityIndex +1; // para mantener la consistencia en la indexación citiesIds[auxCityIndex] = NAME; line = r.readLine(); // System.out.println(line); //Linea de prueba int p = Integer.parseInt(line); for (int neighborIndex=0;neighborIndex&lt;p;neighborIndex++){ line = r.readLine(); // System.out.println(line); //Linea de prueba String [] brokenLine = line.split(" "); int cityToConnect = Integer.parseInt(brokenLine[0]); int weightOfConnection = Integer.parseInt(brokenLine[1]); g.setEdge(auxCityIndex,cityToConnect, weightOfConnection); } } line = r.readLine(); //System.out.println(line); //Linea de prueba int routesToFind = Integer.parseInt(line); for (int routesIndex=0; routesIndex&lt;routesToFind; routesIndex++){ line = r.readLine(); // System.out.println(line); //Linea de prueba String [] cityNames = line.split(" "); String source = cityNames[0]; String destination = cityNames[1]; int sourceIndex = Arrays.binarySearch(citiesIds,source); int destinationIndex= Arrays.binarySearch(citiesIds, destination); double [] distancesFromSource = g.distancesFrom(sourceIndex); int destinationDistance = (int)distancesFromSource[destinationIndex]; System.out.println(destinationDistance); } } } } </code></pre> <p>the input file:</p> <pre><code>1 4 gdansk 2 2 1 3 3 bydgoszcz 3 1 1 3 1 4 4 torun 3 1 3 2 1 4 1 warszawa 2 2 4 3 1 2 gdansk warszawa bydgoszcz warszawa </code></pre> http://stackoverflow.com/questions/1884624/modifying-this-8-puzzle-code-to-print-the-intermediate-states-to-reach-the-soluti/1884686#1884686 Comment by on Modifying this 8-puzzle code to print the intermediate states to reach the solution 2009-12-11T00:25:43Z 2009-12-11T00:25:43Z I mean steps that weren't the ones used to get to the solution. http://stackoverflow.com/questions/1884624/modifying-this-8-puzzle-code-to-print-the-intermediate-states-to-reach-the-soluti/1884686#1884686 Comment by on Modifying this 8-puzzle code to print the intermediate states to reach the solution 2009-12-10T23:35:15Z 2009-12-10T23:35:15Z I did it placing: while(!q.isEmpty()){ System.out.println(q.poll()); } into each direction method when the solution is found and got too many useless Strings, I think I need to access the HashMap. http://stackoverflow.com/questions/1881922/questions-about-javas-string-pool/1881943#1881943 Comment by on Questions about Java's String pool 2009-12-10T16:42:39Z 2009-12-10T16:42:39Z How do you look at the bytecode? What did you use to access it? http://stackoverflow.com/questions/1880587/enabling-assertions-in-netbeans/1880610#1880610 Comment by on Enabling assertions in Netbeans 2009-12-10T12:59:45Z 2009-12-10T12:59:45Z do I need that Execution Profile module? doesn't Netbeans have something built-in already for assertions? http://stackoverflow.com/questions/1880298/how-can-i-pass-command-line-arguments-to-a-program-via-netbeans/1880327#1880327 Comment by on How can I pass command line arguments to a program via Netbeans? 2009-12-10T12:12:27Z 2009-12-10T12:12:27Z can I enable assertions on the Vm options box? http://stackoverflow.com/questions/1878015/saving-each-of-this-boards-into-a-data-structure/1878064#1878064 Comment by on Saving each of this boards into a Data Structure 2009-12-10T01:22:31Z 2009-12-10T01:22:31Z yeah, I overlooked. Thanks. http://stackoverflow.com/questions/1878015/saving-each-of-this-boards-into-a-data-structure Comment by on Saving each of this boards into a Data Structure 2009-12-10T01:21:21Z 2009-12-10T01:21:21Z Thanks Roman, that's useful. http://stackoverflow.com/questions/1878015/saving-each-of-this-boards-into-a-data-structure Comment by on Saving each of this boards into a Data Structure 2009-12-10T01:11:31Z 2009-12-10T01:11:31Z why use trim()? http://stackoverflow.com/questions/1874991/moving-from-state-to-state-in-this-automaton-via-hashmap Comment by on Moving from state to state in this automaton via HashMap 2009-12-09T18:34:35Z 2009-12-09T18:34:35Z Fixed. There are 3 states on each test case, there are two test cases. http://stackoverflow.com/questions/1874991/moving-from-state-to-state-in-this-automaton-via-hashmap/1875093#1875093 Comment by on Moving from state to state in this automaton via HashMap 2009-12-09T18:33:43Z 2009-12-09T18:33:43Z I fixed the code to make it compile. I don't understand why should I override equals and hasCode here. Could you elaborate, please? http://stackoverflow.com/questions/1870519/modelling-a-finite-deterministic-automaton-via-this-data-edit-with-new-code/1870580#1870580 Comment by on Modelling a Finite Deterministic Automaton via this data *Edit with new code* 2009-12-09T18:24:36Z 2009-12-09T18:24:36Z Also, is it necessary for me to override hashCode and equals in State? Why? How should I? http://stackoverflow.com/questions/1874991/moving-from-state-to-state-in-this-automaton-via-hashmap/1875178#1875178 Comment by on Moving from state to state in this automaton via HashMap 2009-12-09T17:20:18Z 2009-12-09T17:20:18Z Thanks, I've modified the code and question based on your suggestions. I've read about equals and hashCode from your links, but I still don't see how to make them work so the automaton doesn't get stuck on the state0. http://stackoverflow.com/questions/1874991/moving-from-state-to-state-in-this-automaton-via-hashmap/1875093#1875093 Comment by on Moving from state to state in this automaton via HashMap 2009-12-09T16:40:44Z 2009-12-09T16:40:44Z Yes, allStates is an ArrayList&lt;State&gt;. I'm inexperienced working with Collections, how should this overrides of equals() and hashCode() should be? http://stackoverflow.com/questions/1870519/modelling-a-finite-deterministic-automaton-via-this-data-edit-with-new-code/1870580#1870580 Comment by on Modelling a Finite Deterministic Automaton via this data *Edit with new code* 2009-12-09T15:39:53Z 2009-12-09T15:39:53Z I've written new code. Please look at the problem at getting out of state 0. http://stackoverflow.com/questions/1870519/modelling-a-finite-deterministic-automaton-via-this-data-edit-with-new-code/1870580#1870580 Comment by on Modelling a Finite Deterministic Automaton via this data *Edit with new code* 2009-12-08T23:55:01Z 2009-12-08T23:55:01Z That seems great. Given the String abaa, how would I go through the states?