Click to See Complete Forum and Search --> : Java Coding


waqassiddiqui
March 31st, 2008, 06:18 AM
Problem 1:-
A rare book collector recently discovered a book written in an unfamiliar language that used the same
characters as the English language. The book contained a short index, but the ordering of the items in the index
was different from what one would expect if the characters were ordered the same way as in the English
alphabet. The collector tried to use the index to determine the ordering of characters (i.e., the collating
sequence) of the strange alphabet, then gave up with frustration at the tedium of the task. You are to write a
program to complete the collector's work. In particular, your program will take a set of strings that has been
sorted according to a particular collating sequence and determine what that sequence is.

Sample Input:-

The input consists of an ordered list of strings of uppercase letters, one string per line. Each string contains at
most 20 characters. The end of the list is signalled by a line that is the single character '#'. Not all letters are
necessarily used, but the list will imply a complete ordering among those letters that are used. A sample input
file is shown below.
XWY
ZX
ZXY
ZXW
YWWX
#


Sample Output:

Your output should be a single line containing uppercase letters in the order that specifies the collating sequence
used to produce the input data file. Correct output for the input data file above is shown below.
XZYW


Can any buddy help me Plz send me the JAVA CODING OF THIS PROGRAM

chazzy
March 31st, 2008, 06:39 AM
it's highly unlikely that anyone on any forum will send you the java code for your homework assignments.

Best of luck on your homework!

dlorde
March 31st, 2008, 08:19 AM
Can any buddy help me Plz send me the JAVA CODING OF THIS PROGRAMNo, but we can help you if you're stuck. Just post the relevant code you have so far and explain exactly what you're stuck on.

If you don't think carefully, you might believe that programming is just typing statements in a programming language...
W. Cunningham