-1

我已经创建了我的链接列表,我希望用户输入一个站,然​​后输出是为该站存储的号码。

    LinkedList myList = new LinkedList();



            myList.addFirst("London", 5);            
      myList.addNode("Manchester ", 10);

      myList.addNode("Liverpool", 20);
      myList .addNode("Birmingham", 50);

这是用户输入的输入。

          String name;              
              name = JOptionPane.showInputDialog("Enter Station: ");


   StringNode  temp;

       temp = mylist.head;

       if (temp.Station == (name)) {


           System.out.println("Yes");


       }

其余方法只是添加新数据并打印。

谢谢

4

1 回答 1

1

这个问题就是 HashMap 的用途。

Map<String, Integer> map = new HashMap<>();
map.put("London", 5);            
map.put("Manchester ", 10);
map.put("Liverpool", 20);
map.put("Birmingham", 50);

String station = "Liverpool";
Integer i = map.get(station);
System.out.println(i);
于 2013-10-26T18:48:16.593 回答