一个算法大家一起来写一把吧 csdn 首页的讨论区

题目:
You are given an array or integers.  Please write a method to return all unique pairs of integers which sum up to 5.  For example:

If you are given this array: [1,-3,9,4,2,5,1,-4,0], your method should return {[1,4], [9,-4], [5,0]}.


我写了一种O(NLogN)的方式:(但我觉得肯定还有优化的余地,maybe可以达到O(N))

 

以上是作者的描述

 

下面是自己的:

 

 

你可能感兴趣的:(一个算法大家一起来写一把吧 csdn 首页的讨论区)