active questions tagged homework - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:59:50Zhttp://stackoverflow.com/feeds/tag/homeworkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811671/frequency-based-sorting-1Frequency based sortingTanuj2009-11-28T05:28:09Z2009-11-28T05:30:56Z
<p>You are given an array of integers and you have sort those integers based on the frequency of<br>
their occurrence. Design an algorithm and analyze its time complexity. In case of ties the smaller<br>
number should appear first in the sorted list.</p>
<p>Sample Input: 3,4,3,2,3,5,4,2,2,1,2<br>
Sample Output: 1 5 4 3 2</p>
http://stackoverflow.com/questions/1809850/java-checking-number-months1Java Checking number monthsdaddycardona2009-11-27T17:24:15Z2009-11-28T05:00:05Z
<p>I think I figure out what question I am trying to ask I dont want get(Calendar.MONTH) I want the month not to be greater than the last caldendar month that is why i am doing month -1, i realize that if i use get(calendar.MONTH) it is getting month of november I just want to see check and make sure its not a greater then the december to us 12 to the computer 11. that is why every other month is invalid that is the question I am trying to get an answer for!?</p>
<pre><code>public Date(String inString)
{
int month;// is define by cutting up the inString like this
int day; // same as month
int getSlash;
getSlash = inStr.indexOf('/');
month = Integer.parseInt(inStr.substring(0,getSlash));
day = Integer.parseInt(inStr.substring(getSlash + 1));
inStr = String.format("%02d/%02d%n",month,day);// padformatting string
inStr= new SimpleDateFormat("MM/dd").format(new SimpleDateFormat("MM/dd").parse(inStr));// checking to see if a actualdate
GregorianCalendar cal = new GregorianCalendar();
// this is what I don't understand after reading
if (month -1 > cal.get(Calendar.MONTH ) // how do I get it to say int of the month if the user types in 12 it gets invalid
{
System.out.Println("Invalid Month -> " + month");
}
}
</code></pre>
<p>when I do this all but month 11 is considered not vailid any one know why? I can not figure it out.</p>
http://stackoverflow.com/questions/1806880/water-jug-problem-in-die-hard-3-into-a-graph1Water Jug problem in Die Hard 3 into a graphbat2009-11-27T05:14:16Z2009-11-28T03:54:59Z
<p>Hi, im not too sure how to implement this...</p>
<p>I need to create a weighted directed graph based on the water jug problem from the movie Die Hard 3 (<a href="http://www.wikihow.com/Solve-the-Water-Jug-Riddle-from-Die-Hard-3" rel="nofollow">http://www.wikihow.com/Solve-the-Water-Jug-Riddle-from-Die-Hard-3</a>).</p>
<p>I need to create nodes for all the possible moves (fill, empty, pour). After i need to find the shortest path to the solution. But i am have trouble creating this graph. I am using my own created linked list/node.</p>
<p>Any help with the algorithm to create this graph would be great. Thanks.</p>
<p>ex) given 3 gallon, 5 gallon. Get 4 gallons in the 5 gallon jug. I need to create a graph of all the possible moves to get to 4 gallons. Each different gallon represents a different node.</p>
<p>Happy Thanksgiving =)</p>
http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c51How do I calculate someone's age in C#?Jeff Atwood2008-07-31T23:40:59Z2009-11-28T01:58:57Z
<p>Given a DateTime representing their birthday, how do I calculate someone's age? </p>
http://stackoverflow.com/questions/1327178/finding-hidden-elements-in-an-image-4Finding Hidden Elements in an imageKing2009-08-25T09:42:57Z2009-11-28T01:50:08Z
<p>I have a two RAW images, a string of text, and a logo. The text and the logo are hidden by applying histogram transformation , now i need to extract the logo and text.. how can i do it in matlab, can anybody give me a piece of code, i want to get over it quickly</p>
http://stackoverflow.com/questions/1807858/frequency-analysis-algorithm0frequency analysis algorithmNoor2009-11-27T10:11:44Z2009-11-28T01:38:40Z
<p>Hello everyone.</p>
<p>I want to write a java program that searches through a cipher text and returns a frequency count of the characters in the cipher, for example the cipher:
"jshddllpkeldldwgbdpked" will have a result like this:</p>
<p>2 letter occurrences:</p>
<p>pk = 2, ke = 2, ld = 2</p>
<p>3 letter occurrences:</p>
<p>pke = 2.</p>
<p>Any algorithm that allows me to do this as efficiently as possible?</p>
http://stackoverflow.com/questions/1811224/why-do-people-rage-against-homework-questions-so-much-1Why do people rage against homework questions so much [closed]Daniel2009-11-28T01:18:16Z2009-11-28T01:26:53Z
<p>Why do people rage against homework questions so much? Everywhere had to start from somewhere and most people needed help at some point so why do people act superior to people who want to learn?</p>
http://stackoverflow.com/questions/1810984/number-of-days-in-any-month-1Number of days in any monthBryan hackett2009-11-27T23:26:21Z2009-11-28T00:18:52Z
<p>JavaScript function that accepts a number from 1 - 12 representing the months of the year, and then returns the number of days in that month?</p>
http://stackoverflow.com/questions/1597073/breadth-first-search-and-a-search-in-a-graph0Breadth first search, and A* search in a graph?kylex2009-10-20T20:23:08Z2009-11-27T23:38:42Z
<p>I understand how to use a breadth first search and A* in a tree structure, but given the following graph, how would it be implemented? In other words, how would the search traverse the graph? S is the start state </p>
<p><a href="http://oddrealm.com/ebay/states.jpg" rel="nofollow">Graph Here</a></p>
http://stackoverflow.com/questions/1810839/des-round-function-on-64bit-plain-text0DES Round Function on 64bit plain text?unknown (yahoo)2009-11-27T22:29:51Z2009-11-27T22:29:51Z
<p>Hi,
I am trying to use the DES round function on a 64bit plaintext but I am not sure how it is working. I know how to apply it on a 32bit (8 blocks of 4 digits). My subkey is 8 block of 6 digits.</p>
<p>Can anyone tell me if I have to divide it into 2 different plaintexts (32bit and 32bit)and then add them together or I have to take them together (64bit) and apply the DES round function?</p>
<p>In other words, when I am performing expansion permutation do I have to get the first digit of the 1st block of the first 32-bit plaintext for my ER or I have to get the first digit of the 1st block (or 9th block if we consider it 64bit) of the second 32-bit???</p>
<p>Example:</p>
<p>The DES round function</p>
<p>An example to illustrate step-by-step the action of the DES i-th round function f on a 32- bit which is assumed to be Ri-1.</p>
<p>Let:</p>
<p>Ri-1= 1010 1011 0110 1001 1101 1110 0101 0010</p>
<p>Ki = 110101 101011 001010 100011 111010 000101 111101 010110</p>
<p>Step 1: Expansion Permutation of Ri-1: follow the instructions given on the next page:</p>
<p>Ri-1 = 1010 <strong>1</strong>011 0110 1001 1101 1110 0101 001**0** </p>
<p>ER = <strong>0</strong>1010**1** 010110 101101 010011 111011 111100 001010 100101</p>
<p>Step 2: XOR (ER, Ki) :</p>
<p>ER = 010101 010110 101101 010011 111011 111100 001010 100101</p>
<p>XOR</p>
<p>Ki = 110101 101011 001010 100011 111010 000101 111101 010110 </p>
<p>XER= 100000 111101 100111 110000 000001 111001 110111 110011</p>
http://stackoverflow.com/questions/1596230/linear-towers-of-hanoi0linear towers of hanoiunknown (yahoo)2009-10-20T17:47:05Z2009-11-27T20:50:39Z
<p>I have a question on the linear Towers of Hanoi. </p>
<p>I implemented it in C++ but am trying to do the same using the tail recursive or iterative method. I am having trouble with my algorithm.</p>
<p>This code snippet shows transferring blocks from the middle tower to the end tower.</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
using namespace std;
//int a[5]={2,3,1,2,1};
int from,spare,to;
int main()
{
//int n;
//void hanoi(int,int,int,int);
void linear_hanoi(int,int,int,int);
void mid_to_end(int,int,int,int);
void end_to_mid(int,int,int,int);
//mid_to_end(3,2,3,1);
end_to_mid(4,3,2,1);
getchar();
return 0;
}
void linear_hanoi(int n, int from, int to, int spare)
{
if(n>0)
{
linear_hanoi(n-1,from,to,spare);
cout<<"move ring "<<n<<" from tower "<<from<<" to tower "<<spare<<endl;
linear_hanoi(n-1,to,from,spare);
cout<<"move ring "<<n<<" from tower "<<spare<<" to tower "<<to<<endl;
linear_hanoi(n-1,from,to,spare);
}
}
void mid_to_end(int n, int from, int to, int spare)
{
if(n>0)
{
mid_to_end(n-1,from,spare,to);
cout<<"move ring "<<n<<" from tower "<<from<<" to tower "<<to<<endl;
// mid_to_end(n-1,spare,from,to);
// mid_to_end(n-1,from,to,spare);
//cout<<"move ring "<<n<<" from tower "<<spare<<" to tower "<<from<<endl;
// mid_to_end(n-1,from,to,spare);
//cout<<"move ring "<<n<<" from tower "<<spare<<" to tower "<<from<<endl;
}
}
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1810348/basic-c-question0basic C++ questiondole doug2009-11-27T19:35:07Z2009-11-27T20:30:02Z
<p>I see in a class notices of a friend this:</p>
<pre><code> void show_results(Book& foreign_books) {
int total_books
total_books = foreign_books.getBooksNumber();
cout << total_books << endl;
}
</code></pre>
<p>this is a good class definition?</p>
<pre><code> class Book{
public:
Book();
int getBooksNumber();
};
</code></pre>
<p>ps: i've writing this from mobile phone, and i cannot check too much documentation(I'm newbie too). I need your confirmation. ty</p>
http://stackoverflow.com/questions/1794111/c-programming-question0C++ programming question Rosemary2009-11-25T01:31:03Z2009-11-27T20:11:23Z
<p>Can Someone tell me what I am doing wrong I have tried my best with this program, please someone with a little more time on their hands so that they can take time to look at the program and Help! Thank you all for your time:)</p>
<pre><code>#include <iostream>
#include <string>
#include <cctype>
using std::cout;
using std::cin;
using std::endl;
//function prototypes
void getItemNumber ();
void checkItemNumber (char *, int);
int main()
{
//declare variables
string Item = "";
getItemNumber();
checkItemNumber(item);
//call function to get input
//void getItemNumber ();
//void checkItemNumber (item);
cout << "Enter your 5-digit item #: ";
cin >> item;
while (item.length() != 5)
{
cout << "Invalid item #. Please enter a 5-digit item # ";
getline(cin, item);
}
if (item.length() == 5)
{
if ('B' == toupper(item[2]))
cout << "Your color is blue" << endl;
else if ('G' == toupper(item[2]))
cout << "Your color is green" << endl;
else if ('R' == toupper(item[2]))
cout << "Your color is red" << endl;
else if ('W' == toupper(item[2]))
cout << "Your color is white" << endl;
}
else
cout<< "Invalid name no matching color...";
// if code is not from any of the above.
system("pause");
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1810107/shell-script-help-looping-over-directories-under-a-directory0Shell script help! Looping over directories under a directorySaobi2009-11-27T18:25:38Z2009-11-27T19:35:30Z
<p>I want to write a shell script that loops through all directories under a directory, and call a java program with the directory name as an argument at each iteration.</p>
<p>So my parent directory is provided as an argument to the shell script: eg: </p>
<pre><code>. myShell.sh /myFolder/myDirectory
</code></pre>
<p>There are 100 directories under <code>/myFolder/myDirectory</code>. For each "directory_i", i want to run:</p>
<pre><code>java myProg directory_i
</code></pre>
<p>If someone can provide me with a working shell script that'll be perfect!</p>
http://stackoverflow.com/questions/1809749/how-to-assign-a-value-to-an-output-reg-in-verilog0How to 'assign' a value to an output reg in Verilog?Rafael Almeida2009-11-27T16:52:53Z2009-11-27T18:01:06Z
<p>( insert really basic question disclaimer here )</p>
<p>More specifically, I have the following declaration:</p>
<pre><code>output reg icache_ram_rw
</code></pre>
<p>And in some point of the code I need to put the zero value in this reg. Here's what I've tried and the outcomes:</p>
<pre><code>assign icache_ram_rw = 1'b0;
( declarative lvalue or port sink reg icache_ram_rw must be a wire )
icache_ram_rw <= 1'b0;
( instance gate/name for type "icache_ram_rw" expected - <= read )
</code></pre>
<p>How do I do it after all?!</p>
http://stackoverflow.com/questions/1809602/thermometer-using-ds1620-ic-and-arm-microcontroller0Thermometer using DS1620 IC and arm microcontrollerAlex Xander2009-11-27T16:21:20Z2009-11-27T17:30:22Z
<p>I am working on a project in which I have to use DS1620 IC to display temperature using ARM LPC23xx micro controller. I want to write code in C. I am a newbie in embedded systems and I have to finish this in 24 Hrs. Please help in any way possible. </p>
http://stackoverflow.com/questions/1808878/expected-illegal-start-of-expression0expected ), illegal start of expressionaddiosamigo2009-11-27T13:47:36Z2009-11-27T15:33:14Z
<p>I can't get my program to compile!</p>
<p>i think im missing a curly brace but can't for the life of me see where!</p>
<pre><code> import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import java.lang.*;
import java.text.*;
import java.net.*;
import java.util.Scanner;
public class AddressBook extends JFrame
{
FlowLayout leftLayout;
JFrame frame;
JPanel panel;
JTextField txtname,txtsurname, txtphone, txtmobile, txtaddress, txtpostcode;
JButton btnadd, btnnext, btnprevious, btnsave, btndelete;
JLabel jlbname, jlbsurname, jlbphone, jlbmobile, jlbaddress, jlbpostcode;
String fileInput,readline;
ArrayList<String> arrayOfFile = new ArrayList<String>();
ArrayList<Contact> records = new ArrayList<Contact>();
int index = 0;
public static void main(String[] args) throws IOException
{
new AddressBook();
}
public AddressBook()
{
//sets window
frame = new JFrame();
frame.setTitle("Bournemouth University Address Book");
frame.setSize(760, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//sets up panel
panel = new JPanel();
panel.setLayout(null);
frame.getContentPane().add(panel);
//Labels
jlbname = new JLabel("Name:");
jlbname.setBounds(10, 50, 100, 20);
panel.add(jlbname);
jlbsurname = new JLabel("Surname:");
jlbsurname.setBounds(350, 50, 100, 20);
panel.add(jlbsurname);
jlbphone = new JLabel("Home Number:");
jlbphone.setBounds(10, 90, 150, 20);
panel.add(jlbphone);
jlbmobile = new JLabel("Mobile:");
jlbmobile.setBounds(350, 90, 150, 20);
panel.add(jlbmobile);
jlbaddress = new JLabel("Address:");
jlbaddress.setBounds(10, 130, 200, 20);
panel.add(jlbaddress);
jlbpostcode = new JLabel("PostCode:");
jlbpostcode.setBounds(10, 170, 250, 20);
panel.add(jlbpostcode);
//Text Fields
txtname = new JTextField("");
txtname.setBounds(120, 50, 200, 20);
panel.add(txtname);
txtsurname = new JTextField("");
txtsurname.setBounds(440, 50, 200, 20);
panel.add(txtsurname);
txtphone = new JTextField("");
txtphone.setBounds(120, 90, 200, 20);
panel.add(txtphone);
txtmobile = new JTextField("");
txtmobile.setBounds(440, 90, 200, 20);
panel.add(txtmobile);
txtaddress = new JTextField("");
txtaddress.setBounds(120, 130, 520, 20);
panel.add(txtaddress);
txtpostcode = new JTextField("");
txtpostcode.setBounds(120, 170, 250, 20);
panel.add(txtpostcode);
//Buttons
btnadd = new JButton("Add", new ImageIcon("../files/add.png"));
btnadd.setBounds(330, 320, 100, 50);
btnadd.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnadd.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
txtname.setText("Add new details here");
txtsurname.setText("");
txtphone.setText("");
txtmobile.setText("");
txtaddress.setText("");
txtpostcode.setText("");
}
});
panel.add(btnadd);
btndelete = new JButton("Delete", new ImageIcon("../files/delete2.png"));
btndelete.setBounds(390, 250, 100, 50);
btndelete.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btndelete.setForeground(Color.red);
// btndelete.addActionListener(this);
panel.add(btndelete);
btnsave = new JButton("Save", new ImageIcon("../files/save.png"));
btnsave.setBounds(490, 250, 100, 50);
btnsave.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnsave.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
try
{
BufferedWriter fileOut = new BufferedWriter(new FileWriter("../files/contacts.buab", true));
fileOut.append(txtname.getText());
fileOut.append("\n");
fileOut.append(txtsurname.getText());
fileOut.append("\n");
fileOut.append(txtphone.getText());
fileOut.append("\n");
fileOut.append(txtmobile.getText());
fileOut.append("\n");
fileOut.append(txtaddress.getText());
fileOut.append("\n");
fileOut.append(txtpostcode.getText() + "\r");
fileOut.close();
}
catch (IOException ioe)
{
JOptionPane.showMessageDialog(null, ioe.getMessage());
}
}
});
panel.add(btnsave);
btnprevious = new JButton("Prev", new ImageIcon("../files/left.png"));
btnprevious.setBounds(280, 250, 100, 50);
btnprevious.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnprevious.addActionListener(new ActionListener()
{public void actionPerformed(ActionEvent event)
{
index--;
displaycontact();
}
});
panel.add(btnprevious);
btnnext = new JButton("Next", new ImageIcon("../files/right.png"));
btnnext.setBounds(180, 250, 100, 50);
btnnext.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnnext.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent event)
{
index ++;
displaycontact();
}
});
panel.add(btnnext);
frame.setVisible(true);
panel.setVisible(true);
JMenuBar mb = new JMenuBar();
frame.setJMenuBar(mb);
JMenu insert = new JMenu("Import");
mb.add(insert);
JMenuItem imp = new JMenuItem("Add New Contacts");
insert.add(imp);
imp.addActionListener(new ActionListener()
{public void actionPerformed(ActionEvent event)
{
JFileChooser fileopen = new JFileChooser();
int ret = fileopen.showDialog(null, "Open file");
if (ret == JFileChooser.APPROVE_OPTION)
{
try {
BufferedReader fileStream = new BufferedReader(new FileReader("src/contacts.buab"));
while (true)
{
String fileInput = fileStream.readLine();
if(fileInput==null)
break;
Contact a = new Contact();
a.setname(fileInput);
a.setsurname(fileStream.readline());
a.setphone(fileStream.readLine());
a.setmobile(fileStream.readLine());
a.setaddress(fileStream.readLine());
a.setpostcode(fileStream.readline());
Contacts.add(a);
System.out.println(a.getname());
}
fileStream.close();
}
catch (Exception ex)
{
JOptionPane.showMessageDialog(null, ioe.getMessage());
}
displaycontact();
}});
}
public void displaycontact()
{
txtname.setText(contacts.get(index).name);
txtsurname.SetText(contacts.get(index).surname);
txtphone.setText(contacts.get(index).phone);
txtmobile.setText(contacts.get(index).mobile);
txtAddress.setText(contacts.get(index).address);
}
}
}
</code></pre>
<p>please help i've been here for 3 hours!!</p>
http://stackoverflow.com/questions/756558/what-is-the-maximum-length-of-a-table-name-in-oracle2What is the maximum length of a table name in Oracle?krolley2009-04-16T15:03:19Z2009-11-27T14:55:02Z
<p>What is the maximum length of a table name in Oracle? For bonus points, what is the maximum length of a column name?</p>
http://stackoverflow.com/questions/1788696/how-the-code-behaves-different-for-java-and-c-compiler5how the code behaves different for java and C compiler ?vipin k.2009-11-24T08:35:41Z2009-11-27T12:54:56Z
<p>I have this Code, i ran this on Java and C ,but they give me two different Results
What is that makes them to run differently.</p>
<pre><code>x=10;y=10;z=10;
y-=x--;
z-=--x;
x-=--x-x--;
</code></pre>
<p>The Output in <strong>java</strong> for value of X is : <strong>8</strong> <BR>
and for <strong>C</strong> it is <strong>6</strong>
How these Two compiler Behaves differently for incremented options.?.</p>
http://stackoverflow.com/questions/1807296/write-a-linked-listbased-variant-of-q2-following-will-be-the-function-prototyp0Write a Linked List‐based variant of Q2. Following will be the function prototype: osama wahid2009-11-27T07:47:54Z2009-11-27T10:39:31Z
<p>int find(struct node *list, int x, int start);
The return value of this recursive function should be the index (position) of x, if x
is indeed present in the list. If x is not in the list, it will return ‐1. e.g. if x is the
data of the first node, the function should return 0, and so on.</p>
http://stackoverflow.com/questions/1807319/java-profram-problem-5Java Profram Problem [closed]Rahul Deshmukh2009-11-27T07:59:36Z2009-11-27T08:52:07Z
<p>Define a class that enables the drawing of freehand lines on a screen through mouse clicking and dragging. Use anonymous inner classes to implement event listeners. The drawing should be cleared when a key is pressed and the line colour should be selectable. Define a test class to demonstrate the program.</p>
http://stackoverflow.com/questions/69930/hidden-markov-models5Hidden Markov ModelsRD2008-09-16T06:56:13Z2009-11-27T04:42:13Z
<p>Hi,</p>
<p>I want to get started on HMM's, but don't know how to go about it. Can people here, give me some basic pointers, where to look?</p>
<p>More than just the theory, I like to do a lot of hands-on. So, would prefer resources, where I can write small code snippets to check my learning, rather than just dry text.</p>
<p>Will be hoping to see some replies.</p>
<p>cheers,
R</p>
http://stackoverflow.com/questions/1806251/moving-through-java-arraylist-with-a-undo-button0moving through Java ArrayList with a undo buttonSize_J2009-11-27T00:21:30Z2009-11-27T02:02:29Z
<p>I know that I am missing something simple here. I have got this homework all done except for moving through my ArrayList. This is a undo feature of a calculator that I need to pull and remove a object from an ArrayList. Here is the method:</p>
<pre><code>public void actionPerformed(ActionEvent e)
{
Status state;
state = new Status(operand1, operator, operand2, displayBox.getText());
//ArrayList that I am coping into
listOfStates.add(state);
super.actionPerformed(e);
if(e.getSource() == undo )
{
Status previousState = (Status) listOfStates.get(listOfStates.size()- 1);
displayBox.setText(" ");
displayBox.setText(displayBox.getText() + previousState.op1);
//This is where I need help at? This calls a method of Status that only returns op1 IE
//first operator
}
}
</code></pre>
<p>The whole Class is here</p>
<pre><code>import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.util.*;
/**
*
*
*
*/
public class BetterCalculator extends Calculator
{
//attributes
protected JButton undo;
protected ArrayList<Status> listOfStates;
private int numClicks = 0;
public BetterCalculator()
{
super();
listOfStates = new ArrayList<Status>();
}
public void createUserInterface3()
{
createUserInterface2();
undo = new JButton("undo");
jPanel.add(undo);
undo.setBackground(Color.red);
undo.setToolTipText("This is the undo feature");
undo.addActionListener(this);
}
public void actionPerformed(ActionEvent e)
{
Status state;
state = new Status(operand1, operator, operand2, displayBox.getText());
//ArrayList that I am coping into
listOfStates.add(state);
super.actionPerformed(e);
if(e.getSource() == undo )
{
Status previousState = (Status) listOfStates.get(listOfStates.size()- 1);
displayBox.setText(" ");
displayBox.setText(displayBox.getText() + previousState.op1);
}
}
public static void main(String[] args)
{
BetterCalculator myCalc;
myCalc = new BetterCalculator();
myCalc.createUserInterface3();
}
}
</code></pre>
<p>Status Class</p>
<pre><code>import java.util.*;
import java.awt.event.*;
import java.awt.*;
/**
* Write a description of class Status here.
*
*
* This is a class to get the status for the undo feature
*/
public class Status
{
//attributes
protected double op1;
protected char opt;
protected double op2;
protected String soFar;
//constructors
public Status(double o1, char op, double o2, String sf)
{
op1 = o1;
opt = op;
op2 = o2;
soFar = sf;
}
//Methods
public double getOp1()
{
return op1;
}
public char getOpt()
{
return opt;
}
public double getOp2()
{
return op2;
}
}
</code></pre>
<p>Thanks for any help. I know I am missing it on how to pull the object out of the ArrayList and then remove it. </p>
http://stackoverflow.com/questions/1805575/i-want-to-give-a-string-a-value-of-one0I want to give a string a value of one.John2009-11-26T20:46:10Z2009-11-26T23:29:35Z
<p>I'm entering team names into a soccer league.</p>
<p>I have an array set up so that the league can take at most 4 teams,</p>
<p>I also have an array that states that the number of teams in the league is exactly 4 teams.</p>
<p>So I want to set up a counter which stops me from entering too many team names. </p>
<p>This is a small chunk of my code </p>
<p>str teamName</p>
<pre><code>for(int i = 0; i < leagueSize; i++)
cout << "Enter a Team Name"<<endl'
cin >> teamName;
</code></pre>
<p>so is there a way for me to give a team name a value of 1 so that each time I enter a team name it decrements the number in the array until I can't add any more teams? </p>
<p>I am new at c++ and haven't been learning for that long so I might be totally off here.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1805905/using-recursively-returned-reference-to-node-in-tree-does-not-allow-changes-to-th0Using recursively returned reference to node in tree does not allow changes to the node itselfFeanor2009-11-26T22:17:57Z2009-11-26T22:43:52Z
<p>My data structures class is working with trees. We are implementing a 3-ary tree, containing 2 values with a reference to a left, middle, and right node (left subtree is less than value 1, middle subtree is between value 1 and value 2, right subtree is greater than value 2). An interface has been provided for the Tree class, and the find, insert, and delete methods must be recursive. The client code which this will be tested against uses the insert method repeatedly to create the tree, and the root starts off as <code>null</code>.</p>
<p>I'm trying to insert values into the tree recursively by finding the parent node in a separate private method, then changing the returned node as appropriate. The problem currently is that the method returns the initial node, which is the root, and correctly creates a new node with the value because the root is null. However, the root remains null.</p>
<p>I'm pretty certain this is due to the way that references and values work in Java (similar to C# as described in <a href="http://www.yoda.arachsys.com/csharp/references.html" rel="nofollow">this article by Jon Skeet</a>); given the constraints, how should I change this to allow insertions into the tree? Below is the current insert method in the tree class, along with the similar private method.</p>
<pre><code>public void insert(AnyType newData)
{
// If insert node is null, make a new node with newData as first key
TernaryNode<AnyType> insert_node = findNode(newData, root);
if (insert_node == null)
{
insert_node = new TernaryNode<AnyType>(newData);
}
else
{
// Get the key that is equal if the insert node is not null
if (insert_node.getKey1() == null)
{
insert_node.setKey1(newData);
}
else
{
insert_node.setKey2(newData);
}
}// end else
}// end insert
private TernaryNode<AnyType> findNode(AnyType item, TernaryNode<AnyType> node)
{
TernaryNode<AnyType> current_node = node;
if (current_node != null)
{
if (current_node.getKey1() != item &&
current_node.getKey2() != item)
{
// Comparator checks left
if (compare.compare(current_node.getKey1(), item) <= -1)
{
return findNode(item, current_node.left);
} // Comparator checks right
else if (compare.compare(current_node.getKey2(), item) >= 1)
{
return findNode(item, current_node.right);
}// Comparator checks middle
else
{
return findNode(item, current_node.middle);
}
}// end while
}// end if
// Return current node even if it is null
return current_node;
}// end findNode
</code></pre>
http://stackoverflow.com/questions/1793516/ideas-for-natural-language-processing-project8Ideas for Natural Language Processing project?Rosarch2009-11-24T22:54:04Z2009-11-26T19:41:44Z
<p>I have to do a final project for my computational linguistics class. We've been using OCaml the entire time, but I also have familiarity with Java. We've studied morphology, FSMs, collecting parse trees, CYK parsing, tries, pushdown automata, regular expressions, formal language theory, some semantics, etc.</p>
<p>Here are some ideas I've come up with. Do you have anything you think would be cool?</p>
<ol>
<li><p>A script that scans Facebook threads for obnoxious* comments and silently hides them with JS (this would be run with the user's consent, obviously)</p></li>
<li><p>An analysis of a piece of writing using semantics, syntax, punctuation usage, and other metrics, to try to "fingerprint" the author. It could be used to determine if two works are likely written by the same author. Or, someone could put in a bunch of writing he's done over time, and get a sense of how his style has changed.</p></li>
<li><p>A chat bot (less interesting/original)</p></li>
</ol>
<p>I may be permitted to use pre-existing libraries to do this. Do any exist for OCaml? Without a library/toolkit, the above three ideas are probably infeasible, unless I limit it to a very specific domain.</p>
<p>Lower level ideas:</p>
<ol>
<li><p>Operations on finite state machines - minimizing, composing transducers, proving that an FSM is in a minimal possible state. I am very interested in graph theory, so any overlap with FSMs could be a good venue to explore. (What else can I do with FSMs?)</p></li>
<li><p>Something cool with regex?</p></li>
<li><p>Something cool with CYK?</p></li>
</ol>
<p>Does anyone else have any cool ideas?</p>
<p>*obnoxious defined as having following certain patterns typical of junior high schoolers. The vagueness of this term is not an issue; for the credit I could define whatever I want and target that.</p>
http://stackoverflow.com/questions/1804223/please-help-with-arraylists-problem0please help with arraylists problemaddiosamigo2009-11-26T15:11:30Z2009-11-26T19:27:23Z
<p>hi, </p>
<p>i'm trying to get my program to compile but its giving me 5 errors</p>
<pre><code>import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import java.lang.*;
import java.text.*;
import java.net.*;
import java.util.Scanner;
public class AddressBook extends JFrame implements ActionListener
{
FlowLayout leftLayout;
JFrame frame;
JPanel panel;
JTextField txtname,txtsurname, txtphone, txtmobile, txtaddress, txtpostcode;
JButton btnadd, btnnext, btnprevious, btnsave, btndelete;
JLabel jlbname, jlbsurname, jlbphone, jlbmobile, jlbaddress, jlbpostcode;
List<Person> people = new ArrayList<Person>();
int i = 0;
public static void main(String[] args) throws IOException
{
new AddressBook();
}
public AddressBook()
{
//sets window
frame = new JFrame();
frame.setTitle("Bournemouth University Address Book");
frame.setSize(760, 500);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//sets up panel
panel = new JPanel();
panel.setLayout(null);
frame.getContentPane().add(panel);
//Labels
jlbname = new JLabel("Name:");
jlbname.setBounds(10, 50, 100, 20);
panel.add(jlbname);
jlbsurname = new JLabel("Surname:");
jlbsurname.setBounds(350, 50, 100, 20);
panel.add(jlbsurname);
jlbphone = new JLabel("Home Number:");
jlbphone.setBounds(10, 90, 150, 20);
panel.add(jlbphone);
jlbmobile = new JLabel("Mobile:");
jlbmobile.setBounds(350, 90, 150, 20);
panel.add(jlbmobile);
jlbaddress = new JLabel("Address:");
jlbaddress.setBounds(10, 130, 200, 20);
panel.add(jlbaddress);
jlbpostcode = new JLabel("PostCode:");
jlbpostcode.setBounds(10, 170, 250, 20);
panel.add(jlbpostcode);
//Text Fields
txtname = new JTextField("");
txtname.setBounds(120, 50, 200, 20);
panel.add(txtname);
txtsurname = new JTextField("");
txtsurname.setBounds(440, 50, 200, 20);
panel.add(txtsurname);
txtphone = new JTextField("");
txtphone.setBounds(120, 90, 200, 20);
panel.add(txtphone);
txtmobile = new JTextField("");
txtmobile.setBounds(440, 90, 200, 20);
panel.add(txtmobile);
txtaddress = new JTextField("");
txtaddress.setBounds(120, 130, 520, 20);
panel.add(txtaddress);
txtpostcode = new JTextField("");
txtpostcode.setBounds(120, 170, 250, 20);
panel.add(txtpostcode);
//Buttons
btnadd = new JButton("Add", new ImageIcon("../files/add.png"));
btnadd.setBounds(330, 320, 100, 50);
btnadd.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnadd.addActionListener(new InnerAListener());
panel.add(btnadd);
btndelete = new JButton("Delete", new ImageIcon("../files/delete2.png"));
btndelete.setBounds(390, 250, 100, 50);
btndelete.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btndelete.setForeground(Color.red);
btndelete.addActionListener(new InnerBListener());
panel.add(btndelete);
btnsave = new JButton("Save", new ImageIcon("../files/save.png"));
btnsave.setBounds(490, 250, 100, 50);
btnsave.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnsave.addActionListener(new InnerCListener());
panel.add(btnsave);
btnprevious = new JButton("Prev", new ImageIcon("../files/left.png"));
btnprevious.setBounds(280, 250, 100, 50);
btnprevious.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnprevious.addActionListener(new InnerDListener());
panel.add(btnprevious);
btnnext = new JButton("Next", new ImageIcon("../files/right.png"));
btnnext.setBounds(180, 250, 100, 50);
btnnext.setFont(new Font("Comic Sans MS", Font.BOLD, 12));
btnnext.addActionListener(new InnerEListener());
panel.add(btnnext);
frame.setVisible(true);
panel.setVisible(true);
JMenuBar mb = new JMenuBar();
frame.setJMenuBar(mb);
JMenu insert = new JMenu("Import");
mb.add(insert);
JMenuItem imp = new JMenuItem("Add New Contacts");
insert.add(imp);
imp.addActionListener(new InnerFListener());
}
private class InnerAListener
implements ActionListener
{
public void actionPerformed(final ActionEvent e)
{
Clearscreen();
}
}
private class InnerBListener
implements ActionListener
{
public void actionPerformed(final ActionEvent e)
{
Delete();
}
}
private class InnerCListener
implements ActionListener
{
public void actionPerformed(final ActionEvent e)
{
Save();
}
}
private class InnerDListener
implements ActionListener
{
public void actionPerformed(final ActionEvent e)
{
Previous();
}
}
private class InnerEListener
implements ActionListener
{
public void actionPerformed(final ActionEvent e)
{
Next();
}
}
private class InnerFListener
implements ActionListener
{
public void actionPerformed(final ActionEvent e)
{
ImportContacts();
}
}
public void previous()
{
if (i > 0)
{
i--;
}
display(people.get(i));
}
public void Next()
{
if(i < people.size() - 1)
{
i++;
}
display(people.get(i));
}
private void display(final Person person)
{
txtname.setText(person.getname());
txtsurname.setText(person.getsurname());
txtphone.setText(person.getphone());
txtmobile.setText(person.getmobile());
txtaddress.setText(person.getaddress());
txtpostcode.setText(person.getpostcode());
}
public void Save()
{
try
{
BufferedWriter fileOut = new BufferedWriter(new FileWriter("../files/contacts.buab", true));
fileOut.append(txtname.getText());
fileOut.append("\n");
fileOut.append(txtsurname.getText());
fileOut.append("\n");
fileOut.append(txtphone.getText());
fileOut.append("\n");
fileOut.append(txtmobile.getText());
fileOut.append("\n");
fileOut.append(txtaddress.getText());
fileOut.append("\n");
fileOut.append(txtpostcode.getText() + "\r");
fileOut.close();
}
catch (IOException ioe)
{
JOptionPane.showMessageDialog(null, ioe.getMessage());
}
}
public void Clearscreen()
{
txtname.setText("Add new details here");
txtsurname.setText("");
txtphone.setText("");
txtmobile.setText("");
txtaddress.setText("");
txtpostcode.setText("");
}
public void ImportContacts
{
public void actionPerformed(ActionEvent event)
{
JFileChooser fileopen = new JFileChooser();
int ret = fileopen.showDialog(null, "Open file");
if (ret == JFileChooser.APPROVE_OPTION)
{
try
{
final File file;
final Scanner scanner;
file = new File("../files/contacts.buab");
scanner = new Scanner(file);
while(scanner.hasNextLine())
{
final Person person;
person = new Person(scanner);
people.add(person);
}
}
catch (IOException ioe)
{
JOptionPane.showMessageDialog(null, ioe.getMessage());
}
display(people.get(0));
}
}
};
</code></pre>
<p>}</p>
<p>the errors all start:</p>
<pre><code> public void ImportContacts
{
</code></pre>
<p>they say the { should be a (, then it says illegal start of expression, the go onto the line below</p>
<pre><code> public void actionPerformed(ActionEvent event)
</code></pre>
<p>i can't see whats wrong?</p>
http://stackoverflow.com/questions/1804230/array-of-inaddr0Array of in_addrDoug2009-11-26T15:12:41Z2009-11-26T15:23:43Z
<p>Hi,</p>
<p>I would like to create a array of in_addr using gethostbyname(). After looking on Google, I have found this short code (at <a href="http://www.logix.cz/michal/devel/various/gethostbyname.c.xp" rel="nofollow">http://www.logix.cz/michal/devel/various/gethostbyname.c.xp</a>):</p>
<pre><code>/*
* gethostbyname.c - Example of using gethostbyname(3)
* Martin Vidner <mvidner@suse.cz>
*/
#include <stdio.h>
#include <netdb.h>
#include <netinet/in.h>
struct hostent *he;
struct in_addr a;
int
main (int argc, char **argv)
{
if (argc != 2)
{
fprintf(stderr, "usage: %s hostname\n", argv[0]);
return 1;
}
he = gethostbyname (argv[1]);
if (he)
{
printf("name: %s\n", he->h_name);
while (*he->h_aliases)
printf("alias: %s\n", *he->h_aliases++);
while (*he->h_addr_list)
{
bcopy(*he->h_addr_list++, (char *) &a, sizeof(a));
printf("address: %s\n", inet_ntoa(a));
}
}
else
herror(argv[0]);
return 0;
}
</code></pre>
<p>I tested this code with this:</p>
<pre><code>$ ./a.out google.com
name: google.com
address: 74.125.45.100
address: 74.125.53.100
address: 74.125.67.100
</code></pre>
<p>Seeing this result, I am satisfied because I wanted a list of IP addresses from a domain.</p>
<p>But I just have one problem: I don't know how to save this list of IP addresses in a array (with the same size than addresses number)... have you got an example by chance?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/1804000/formatting-date-2-24-as-february-240Formatting date 2/24 as "February, 24"daddycardona2009-11-26T14:31:43Z2009-11-26T15:14:34Z
<p>I am trying t make a date that comes in like this mm/dd turn into the name of the month and day like it comes in 8/15 i want it to say August, 15</p>
<pre><code>public void printAlphabetical()
{
int month,day;// i got the month and day from a user previously in my program
String s = String.format("%B, %02d%n",month,day);
Date date = new Date();
date.parse(s);// this does not work
System.out.printf(s);
}
</code></pre>
http://stackoverflow.com/questions/1674018/proving-f-f-bool-bool0Proving f (f bool) = boolMarcus Whybrow2009-11-04T14:18:00Z2009-11-26T04:45:59Z
<p>How can I in coq, prove that a function <code>f</code> that accepts a bool <code>true|false</code> and returns a bool <code>true|false</code> (shown below), when applied twice to a single bool <code>true|false</code> would always return that same value <code>true|false</code>:</p>
<pre><code>(f:bool -> bool)
</code></pre>
<p>For example the function <code>f</code> can only do 4 things, lets call the input of the function <code>b</code>:</p>
<ul>
<li>Always return <code>true</code></li>
<li>Always return <code>false</code></li>
<li>Return <code>b</code> (i.e. returns true if b is true vice versa)</li>
<li>Return <code>not b</code> (i.e. returns false if b is true and vice vera)</li>
</ul>
<p>So if the function always returns true:</p>
<pre><code>f (f bool) = f true = true
</code></pre>
<p>and if the function always return false we would get:</p>
<pre><code>f (f bool) = f false = false
</code></pre>
<p>For the other cases lets assum the function returns <code>not b</code></p>
<pre><code>f (f true) = f false = true
f (f false) = f true = false
</code></pre>
<p>In both possible input cases, we we always end up with with the original input. The same holds if we assume the function returns <code>b</code>.</p>
<p>So how would you prove this in coq?</p>
<pre><code>Goal forall (f:bool -> bool) (b:bool), f (f b) = f b.
</code></pre>