- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
public static list Sum2List(list L1, list L2) {
list l = new list();
l.first = new listNode(0, null);
listNode x = l.first;
for (listNode p = L1.first, p1 = L2.first; (p != null && p1 != null); p = p.next, p1 = p1.next) {
x.data = p.data + p1.data;
x.next = new listNode(0, null);
}
return l;
}
it shows some error and i think their is error in my coding too.plz if anyone can help out.guys in output its jst showing two values
是否可以使用while循环编写这些求和列表方法的代码?
最佳答案
这是您的代码,可以正常工作。这通常不是在 java 中执行的方式,这看起来更像是像 perl 这样的脚本语言。
public class SomeLists {
public static void main(String[] args) {
list l1 = new list();
l1.first = new listNode();
l1.first.data = 1;
l1.first.next = new listNode();
l1.first.next.data = 2;
list l2 = new list();
l2.first = new listNode();
l2.first.data = 3;
l2.first.next = new listNode();
l2.first.next.data = 4;
list sum = SomeLists.Sum2List(l1, l2);
assert (sum.first.data == 3);
assert (sum.first.next.data == 6);
}
public static list Sum2List(list L1, list L2) {
list l = new list();
listNode currentNode = null;
for (listNode p1 = L1.first; p1 != null; p1 = p1.next) {
for (listNode p2 = L2.first; p2 != null; p2 = p2.next) {
listNode newNode = new listNode();
newNode.data = p1.data + p2.data;
if (currentNode == null) {
// first time only
l.first = newNode;
}
else {
// all other times
currentNode.next = newNode;
}
// move currentNode forward.
currentNode = newNode;
}
}
return l;
}
private static class list {
public listNode first;
}
private static class listNode {
public listNode next;
public int data;
}
}
如果你想让它更像 Java,那么它应该是面向对象的,成员变量应该是私有(private)的,并通过 getter 和 setter 访问。像这样的东西。
public class SomeLists {
public static void main(String[] args) {
MyList l1 = new MyList();
ListNode listNode1 = new ListNode(1);
l1.add(listNode1);
ListNode listNode2 = new ListNode(2);
l1.add(listNode2);
MyList l2 = new MyList();
ListNode listNode3 = new ListNode(3);
l2.add(listNode3);
ListNode listNode4 = new ListNode(4);
l2.add(listNode4);
MyList sum = SomeLists.Sum2List(l1, l2);
ListNode first = sum.getFirst();
ListNode second = first.getNext();
assert (first.getData() == 3);
assert (second.getData() == 6);
}
public static MyList Sum2List(MyList L1, MyList L2) {
MyList sum = new MyList();
ListNode currentNode1 = L1.getFirst();
ListNode currentNode2 = L2.getFirst();
while (currentNode1 != null && currentNode2 != null) {
sum.add(new ListNode(currentNode1.getData() + currentNode2.getData()));
currentNode1 = currentNode1.getNext();
currentNode2 = currentNode2.getNext();
}
return sum;
}
private static class MyList {
private ListNode first;
public void add(ListNode listNode) {
if (first == null) {
this.first = listNode;
}
else {
first.addLast(listNode);
}
}
public ListNode getFirst() {
return first;
}
}
private static class ListNode {
private ListNode next;
private int data;
public ListNode(int i) {
this.data = i;
}
public void addLast(ListNode listNode) {
if (this.next == null) {
this.next = listNode;
}
else {
this.next.addLast(listNode);
}
}
public ListNode getNext() {
return next;
}
public int getData() {
return data;
}
}
}
话又说回来,为什么要实现轮子呢? Java中已经有一个列表了
import java.util.ArrayList;
import java.util.List;
public class SomeLists {
public static void main(String[] args) {
List<Integer> l1 = new ArrayList<Integer>();
List<Integer> l2 = new ArrayList<Integer>();
l1.add(1);
l1.add(2);
l2.add(3);
l2.add(4);
List<Integer> sum = SomeLists.Sum2List(l1, l2);
assert (sum.get(0) == 3);
assert (sum.get(1) == 6);
}
public static List<Integer> Sum2List(List<Integer> l1, List<Integer> l2) {
List<Integer> sum = new ArrayList<Integer>();
for (int i = 0; i < l1.size() && i < l2.size(); i++) {
sum.add(l1.get(i) + l2.get(i));
}
return sum;
}
}
关于Java对2个列表求和并存储在列表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23300471/
我正在尝试在 OCaml 中创建一个函数,该函数在数学中执行求和函数。 我试过这个: sum n m f = if n = 0 then 0 else if n > m then f
我正在尝试找到一个可以帮助我解决问题的公式。 这个公式应该对每个靠近(总是在左边)具有相同名称的单元格的单元格求和(或工作)。如下所示: 将每个大写字母视为 “食谱”并且每个小写字母为 “成分” .在
让它成为以下 python pandas DataFrame,其中每一行代表一个人在酒店的住宿。 | entry_date | exit_date | days | other_columns
我有显示客户来电的数据。我有客户号码、电话号码(1 个客户可以有多个)、每个语音调用的日期记录以及调用持续时间的列。表看起来如下示例。 CusID | PhoneNum | Date
让它成为以下 python pandas DataFrame,其中每一行代表一个人在酒店的住宿。 | entry_date | exit_date | days | other_columns
我得到了两列数据; 答: 2013年12月31日 2013年12月30日 2013年12月29日 2013年12月28日 2013年12月27日 2012年12月26日 B: 10 10 10 10
我对 double 格式的精度有疑问。 示例: double K=0, L=0, M=0; scanf("%lf %lf %lf", &K, &L, &M); if((K+L) 我的测试输入: K
我有以下数组: int[,] myArray1 = new int[2, 3] { { 1, 2, 3 }, { 4, 6, 8 } }; int[,] myArray2 = new int[2, 3
我需要有关报告查询的帮助。我在该方案的底部有一个发票表,需要一种方法来获取总计费金额,同时在此数据库方案中的较高点进行条件过滤。我需要加入其他表,这会导致 SUM 函数返回不需要的结果。 这是我正在使
我有一个使用innodb作为存储引擎的MySQL数据库,并且我有许多采用基本形式的查询: SELECT bd.billing, SUM(CASE WHEN tc.transaction_class
尝试创建一个查询来给出总胜、平和负。我有以下查询 SELECT CASE WHEN m.home_team = '192' AND m.home_full_time_score
我正在尝试生成一份报告,显示排名靠前的推荐人以及他们推荐的人产生了多少收入。 这是我的表格的缩写版本: Users Table ------------------ id referral_user_
我有以下查询,并得到了预期的结果: SELECT IF (a1>b1,'1','0') AS a1r, IF (a2>b2,'1','0') AS a2r,
我尝试了几种不同的解决方案,但都没有成功。我给出的表格是一个示例,其设计和功能与我实际使用的表格类似: PK | Color | Count -------------------
我正在尝试构建一个查询来检查我的库存。 SELECT COUNT(*) AS item_count, reseller_id, sum(sold) as sold_count, sum(refunde
我试图解决一个看起来像下面编写的代码的问题,但由于缺乏知识和阅读 sqlalchemy 文档,我还没有真正找到解决问题的方法。 目标: 如果 year_column 中的年份相同,则获取 sales_
我有一个包含一周中多天的表格。一周中的每一天都有独特的属性,例如冰淇淋是否在这一天成功送达: ID DAY_WEEK ICE_CREAM 1 Monday
首先,我有一个名为store_00的表 id | ref | item | qty | cost | sell 1 22 x1 5 10 15 2 22
我正在编写一个程序,计算每个数字的总和,直到 1000。例如,1+2+3+4+5....+100。首先,我将求和作业分配给 10 个处理器:处理器 0 得到 1-100,处理器 1 得到 101-20
我想在一个循环中一次对多个属性求和: class Some(object): def __init__(self, acounter, bcounter): self.acou
我是一名优秀的程序员,十分优秀!