1. 首页
  2. 考试认证
  3. 其它
  4. leetcodepushfront LeetCode 力码

leetcodepushfront LeetCode 力码

上传者: 2024-10-04 23:39:32上传 ZIP文件 20.49KB 热度 5次
leetcode推前力码接受的最喜欢/采访问题的提交1.二和相关主题:数组、哈希表class Solution { public: vector< int > twoSum (vector< int >& nums, int target) { unordered_map< int , int > hash; for ( int i= 0 ;i ({hash[j], i}); } else { hash[target-j]=i; } } return vector< int >(); } }; 2.两个数相加相关主题:链表、数学、递归/* * * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr)
用户评论