So I have a while loop that captures each line of strings from an external file and separates them word by word using string tokenizer. Next, each word is to go into a linked list that is connected. Since each line is different size, I don't know how I would program it so the linked list is created as many times as needed.
For example:
first line in file = "Hi how are you" second line in file = "I am good how are you"
As you can see the second line will have more words with the string tokenizer than the first one. How would I go about solving such a problem?
I am a student and still learning and I must use linked lists...no arrays.
I truly appreciate your help.
here is the code for main block:
public static void main(String[] args) throws IOException
{
dataInpt=new File("C:\\sentences.txt");
inFile=new Scanner(dataInpt);
StringTokenizer myTokens;
String line, sentence;
Node node1 = new Node();
while (inFile.hasNextLine())
{
line=inFile.nextLine();
myTokens=new StringTokenizer(line);
while (myTokens.hasMoreTokens())
{
sentence=myTokens.nextToken();
as you can see that is not complete. I don't know what would I do next because if I do node.value=myTokens.nextToken(); , then it would only save that word onto the node instead of adding a node for each word while linking all the nodes so node="Hi" and node.next="How" and node.next.next="are"...etc.
here is the class for Node:
public class Node
{
public Object value;
public Node next;
public Node()
{
value=null;
next=null;
}
public Node (Object value, Object value2, Node next)
{
this.value=value;
this.next=next;
}
}
If you have any more questions, please ask. I really need help on this.