摘要:
题目链接 题解 模拟加法的过程。 有个链表的技巧,如果再头指针可能发生变化的情况下,最好添加一个头结点,这样对于链表的许多操作不需要特判头指针了。 CPP /** * Definition for singly-linked list. * struct ListNode { * int val; 阅读全文
摘要:
题目链接 暴力 直接利用双重循环找到当前值和数组中另一个值是否相加等于target 时间复杂度O(n2) class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { for(int i = 0; i < n 阅读全文