两数之和
原文英文,约400词,阅读约需2分钟。发表于: 。This article will highlight two approaches the brute force and the efficient approach Question Leetcode link -> https://leetcode.com/problems/two-sum/description/ Given an array of...
本文介绍了两种解决“两数之和”问题的方法:暴力法和高效法。暴力法采用双重循环,时间复杂度为O(n²),空间复杂度为O(1);高效法利用哈希表,时间复杂度为O(n),空间复杂度为O(n)。