摘要: 1 public static boolean isPalindrome(ListNode head) { 2 List<Integer> list=new ArrayList<Integer>(); 3 int num=0; 4 while(head!=null) { 5 list.add(hea 阅读全文
posted @ 2022-06-03 20:08 Ssshiny 阅读(46) 评论(0) 推荐(0)