LeetCode-1. 兩數之和

kewlgrl發表於2018-04-28

1. 兩數之和


給定一個整數陣列和一個目標值,找出陣列中和為目標值的兩個數。

你可以假設每個輸入只對應一種答案,且同樣的元素不能被重複利用。

示例:

給定 nums = [2, 7, 11, 15], target = 9

因為 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

C


#include<bits/stdc++.h>
using namespace std;
/********************提交程式碼********************/
int* twoSum(int* nums, int numsSize, int target)
{
    int i,j;
    int *ans=(int*)malloc(2*sizeof(int));
    bool flag=false;
    for(i=0; i<numsSize; ++i)
    {
        if(flag)
            break;
        for(j=0; j<numsSize; ++j)
        {
            if(i==j)
                continue;
            if(nums[i]+nums[j]==target)
            {
                ans[0]=i;
                ans[1]=j;
                flag=true;
                break;
            }
        }
    }
    if(ans[0]>ans[1])
    {
        int temp=ans[0];
        ans[0]=ans[1];
        ans[1]=temp;
    }
    return ans;
}
/***************************************************/
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    //nums = [2, 7, 11, 15], target = 9
    int nums[4]= {2,7,11,15};
    int *ans;
    ans=twoSum(nums,4,9);
    cout<<*(ans+0)<<" "<<*(ans+1)<<endl;
    return 0;
}


罒ω罒決定重拾程式碼,從簡單題開始刷吧。

函式裡面sort和swap這樣的函式都不能用,不申請記憶體就會RE。

深深覺得自己以前C/C++混寫的程式碼風格太說不過去了,指標函式也手生,引以為戒吧。

相關文章