您的位置:首页 > 科技 > 能源 > 梅州建站电话_集团公司网页设计内容_百度推广优化工具_最佳磁力搜索天堂

梅州建站电话_集团公司网页设计内容_百度推广优化工具_最佳磁力搜索天堂

2024/11/17 17:23:29 来源:https://blog.csdn.net/m0_74814985/article/details/142386436  浏览:    关键词:梅州建站电话_集团公司网页设计内容_百度推广优化工具_最佳磁力搜索天堂
梅州建站电话_集团公司网页设计内容_百度推广优化工具_最佳磁力搜索天堂

思路

解法1:适用于数字不多的

1.把节点的数,都放进一个arraylist中

2.调用Collections.reverse(list)方法,将list转置

3.再遍历list,逐个放入数字

代码

解法1

import java.util.ArrayList;
import java.util.Collections;public class Main {public static void main(String[] args) {}public static class ListNode {int val;ListNode next;ListNode() {}ListNode(int val) { this.val = val; }ListNode(int val, ListNode next) { this.val = val; this.next = next; }}static class  Solution {public ListNode reverseList(ListNode head) {ListNode cur = head;ArrayList<Integer> list = new ArrayList<>();while (cur != null) {list.add(cur.val);cur=cur.next;}Collections.reverse(list);cur=head;for (int i = 0; i <= list.size() - 1; i++) {cur.val=list.get(i);cur=cur.next;}return head;}
}

记录

总结

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com