如何使用 while 循环和迭代器来乘以 LinkedList 的内容

发布于 2024-10-17 02:32:20 字数 682 浏览 2 评论 0原文

这是我的代码:

import java.util.*;

public class Multiply {
    public static void main(String[] args) {

        LinkedList<Integer>num = new LinkedList<Integer>();
        num.add("1");
        num.add("2");
        num.add("3");
        num.add("4");
        num.add("5");

        product( num );
    }

    public static void product(LinkedList<Integer> list) {
        int index = 0;
        Iterator<Integer>productw = list.iterator();
        Integer next = productw.next()

        while (productw.hasNext()) {
            index++;
            System.out.println("The product of the numbers is = " + num);
        }
    }
}

Here is my code:

import java.util.*;

public class Multiply {
    public static void main(String[] args) {

        LinkedList<Integer>num = new LinkedList<Integer>();
        num.add("1");
        num.add("2");
        num.add("3");
        num.add("4");
        num.add("5");

        product( num );
    }

    public static void product(LinkedList<Integer> list) {
        int index = 0;
        Iterator<Integer>productw = list.iterator();
        Integer next = productw.next()

        while (productw.hasNext()) {
            index++;
            System.out.println("The product of the numbers is = " + num);
        }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

〗斷ホ乔殘χμё〖 2024-10-24 02:32:20

在 while 循环之前最初有一个乘法恒等式(即 1 )。并继续乘以迭代器值。

Psuedo - 代码:

public static void product(LinkedList<Integer> list) 
{
    Iterator<Integer>productw = list.iterator();
    int result = 1;
    for( int i=0; i<productw.size(); ++i ) {
        result *= productw.get(i) ;
    }
    // result has the answer
}

编辑 1:

上面的循环假设列表至少有 1 个元素。如果列表没有元素,那么答案一定是零,我认为您可以轻松对其进行编程。

Initially have a multiplication identity ( i.e., 1 ) before your while loop. And keep multiplying to it the iterator values.

Psuedo - code :

public static void product(LinkedList<Integer> list) 
{
    Iterator<Integer>productw = list.iterator();
    int result = 1;
    for( int i=0; i<productw.size(); ++i ) {
        result *= productw.get(i) ;
    }
    // result has the answer
}

Edit 1:

The above loop assumes that the list has at least 1 element. If list has no elements, then zero must be the answer which I assume you can easily program it.

清君侧 2024-10-24 02:32:20

您需要为产品定义一个初始值
然后在循环中更改它

另外...您的循环将多次打印该语句 - 您不希望这样 - 对吧?

华泰

You need to define an initial value for the product
And then change it in the loop

Also...Your loop will print the statement multiple times- you don't want that- right ?

HTH

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文