English 中文(简体)
从相关清单中选择某些指示
原标题:selecting certain strings from a linked list

我有一个使用 no子的联系分子。 我原封不动地印刷,但现在我是想用用户要求的某些信件印出名字的人。 例如,用“A”开始印制所有名字的人。 我确信,这样做的最佳途径是做我迄今为止所做的事情,但我只是想去做不同的事,我很想像把名单联系起来。 任何建议或建议或内容都受到高度赞赏。

这里,我认为我可以做些什么:

       public void findSameStartingLetter(BigNode front, String letter) {
       BigNode curr;
       curr = front; 
       String name;
       name = curr.dataitems;
       String d;
    //   char c; 
          while (curr.next != null){

              d = name.substring(0, 1);
            if (d.equals(letter)) {
                System.out.println(d);
              curr = curr.next;

         // for(int i=0; i < 1; i++) { 
              //  c = letter.charAt(i);
        //  }
              } 

          }
   }
最佳回答

它认为,你需要读一下在座右铭上的人的名字,而不是读一读,然后不要再分配这个变数。

你们也应该检查一下,看看看目前的节点是否无效,而不是下一个节点。 如果你检查下一个名字,你将错上名单上的最后名字。

而且,确保名单上的点人流动,如果我们想要检查下一个节点,而不管名称是什么。

除了逻辑外,它认为你与 j一样,没有什么不舒服。 总结你们的榜样,你可以利用java的能力,在一条线上调和价值观。

Java的扼杀,不是在子体上做一个子体,而是开始。 采用同样方法。 尼斯工作

public void findSameStartingLetter( BigNode front, String letter )
    {
        BigNode curr = front;
        while( curr != null )
        {
            String name = curr.dataitems;
            if( name.startsWith( letter ) )
            {
                System.out.println( name );
            }
            curr = curr.next;
        }
    }
问题回答

对我来说,唯一的改动是使用<代码>等于IgnoreCase()而不是仅仅使用<代码>等。 Oh, 离开curr = 曲线;side the if





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签