当前位置:   article > 正文

LeetCode热题hot100_leetcode hot 100

leetcode hot 100

LeetCode热题hot100

1. 两数之和

在这里插入图片描述
在这里插入图片描述

class Solution {
   
    public int[] twoSum(int[] nums, int target) {
   
        int n = nums.length;
        for (int i = 0; i < n; ++i) {
   
            for (int j = i + 1; j < n; ++j) {
   
                if (nums[i] + nums[j] == target) {
   
                    return new int[]{
   i, j};
                }
            }
        }
        return new int[0];
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

2.两数相加

在这里插入图片描述
在这里插入图片描述

class Solution {
   
    public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
   
        ListNode head = null, tail = null;//声明一个链表, 给定头、尾结点
        int carry = 0;//进位
        while (l1 != null || l2 != null) {
   
       		 //若没有,默认为0
            int n1 = l1 != null ? l1.val : 0;
            int n2 = l2 != null ? l2.val : 0;
            int sum = n1 + n2 + carry;
			
            if (head == null) {
   //开始时
                head = tail = new ListNode(sum % 10);//尾结点指向头结点
            
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/685118
推荐阅读
相关标签
  

闽ICP备14008679号