2021-3-15 JAVA日常

1、println和printf以及print区别
print和prinln的区别 后者自带换行功能
printf–函数,把文字格式化以后输出,直接调用系统调用进行IO的,他是非缓冲的。
2、Integer和int的区别

1、Integer是int提供的封装类,而int是Java的基本数据类型;
2、Integer默认值是null,而int默认值是0;
3、声明为Integer的变量需要实例化,而声明为int的变量不需要实例化;
4、Integer是对象,用一个引用指向这个对象,而int是基本类型,直接存储数值。

通过数组转为链表,以及通过键盘输入链表  考试可能第一种偏多

合并两个链表代码
package leetcode1230;
import java.util.*;

public class ListNodeMOBAN {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		Scanner in = new Scanner(System.in);
		String line = in.nextLine();
		Scanner in2 = new Scanner(line);
		//数组转链表
		ListNode l5 = new ListNode(0);
		ListNode cur3 = l5;
		int[] arr = {1,2,3,4,5};
		for(int i=0; i<arr.length; i++){
			l5.next = new ListNode(arr[i]);
			l5 = l5.next;
		}
		
		//链表1
		ListNode l4 = new ListNode(0);
		ListNode cur2 = l4;
		while(in2.hasNextInt()){
	     	l4.next = new ListNode(in2.nextInt());
	     	l4 = l4.next;
	 	}
		
		
		ListNode ret2 = mergeTwoLists(cur2.next,cur3.next);
		System.out.println("");
		System.out.println("l1和l4");
		while(ret2!=null){
			System.out.printf("%d  ",ret2.val);
			ret2 = ret2.next;
		}
	}
	public static ListNode mergeKLists(ListNode[] lists) {
        ListNode ans = null;
        for (int i = 0; i < lists.length; ++i) {
            ans = mergeTwoLists(ans, lists[i]);
        }
        return ans;
    }

    public static ListNode mergeTwoLists(ListNode a, ListNode b){
        if (a == null || b == null) {
            return a != null ? a : b;
        }
        ListNode head = new ListNode(0);
        ListNode tail = head, aPtr = a, bPtr = b;
        while (aPtr != null && bPtr != null) {
            if (aPtr.val < bPtr.val) {
                tail.next = aPtr;
                aPtr = aPtr.next;
            } else {
                tail.next = bPtr;
                bPtr = bPtr.next;
            }
            tail = tail.next;
        }
        tail.next = (aPtr != null ? aPtr : bPtr);
        return head.next;
    }
	
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值