python实现leetcode算法题库-twoSum-两数之和(1)
2021/4/15 20:26:53
本文主要是介绍python实现leetcode算法题库-twoSum-两数之和(1),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
给定一个整数数组 nums和一个整数目标值 target,请你在该数组中找出 和为目标值 的那两个整数,并返回它们的数组下标。
你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。
你可以按任意顺序返回答案。
示例 1:
输入:nums = [2,7,11,15], target = 9 输出:[0,1] 解释:因为 nums[0] + nums[1] == 9 ,返回 [0, 1] 。
class TwoSum: """ nums: [int] target: int return: two ele's index, [int] """ def __init__(self, nums, target): self.nums = nums self.target = target def demo_On2(self): """ O(n^2) :return: """ for i in range(len(self.nums)): for j in range(i+1, len(self.nums)): if self.nums[i] + self.nums[j] == self.target: return [i, j] return [] def demo_Onlogn(self): """ O(nlogn) :return: """ # sorted_id >>> list consist of every ele's index in the nums sorted_id = sorted(range(len(self.nums)), key= lambda k:self.nums[k]) print(sorted_id) head = 0 tail = len(self.nums) - 1 sum_res = self.nums[sorted_id[head]] + self.nums[sorted_id[tail]] while sum_res != target: if sum_res > target: tail -= 1 elif sum_res < target: head += 1 sum_res = self.nums[sorted_id[head]] + self.nums[sorted_id[tail]] return [sorted_id[head], sorted_id[tail]] def demo_On(self): """ O(n) :return: """ dict_ = {} # enumerate >>> generator obj for index, num in enumerate(nums): other_num = self.target - num if other_num in dict_: return [dict_[other_num], index] # key >>> num, index >>> value dict_[num] = index return None if __name__ == "__main__": nums = [1, 3, 8, 2, 8, 5] target = 16 twoSum = TwoSum(nums, target) res = twoSum.demo_On() print(res)
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/two-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
这篇关于python实现leetcode算法题库-twoSum-两数之和(1)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-24Python编程基础详解
- 2024-11-21Python编程基础教程
- 2024-11-20Python编程基础与实践
- 2024-11-20Python编程基础与高级应用
- 2024-11-19Python 基础编程教程
- 2024-11-19Python基础入门教程
- 2024-11-17在FastAPI项目中添加一个生产级别的数据库——本地环境搭建指南
- 2024-11-16`PyMuPDF4LLM`:提取PDF数据的神器
- 2024-11-16四种数据科学Web界面框架快速对比:Rio、Reflex、Streamlit和Plotly Dash
- 2024-11-14获取参数学习:Python编程入门教程