leetcode
目前创新互联已为近1000家的企业提供了网站建设、域名、网页空间、绵阳服务器托管、企业网站设计、衢江网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。1.Two Sum
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution.
Example:
Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].
UPDATE (2016/2/13):
The return format had been changed to zero-based indices. Please read the above updated description carefully.
#include#include int* twoS(int* nums,int numsize,int target) { int i=0; int j=numsize-1; int sum; int* res=(int*)malloc(2*sizeof(int)); if(nums==NULL) { return NULL; } while(i nums[i]+nums[j]) { i++; } else { j--; } } return NULL; } int main() { int a[]={2,3,7,11,15}; //printf("%d\n",sizeof(a)); int* p; p=twoS(a,4,9); if(p!=NULL) { printf("%d....%d",p[0],p[1]); }else { printf("NULLLLL"); } free(p); return 0; }
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。