91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何編寫代碼實現兩數之和

發布時間:2021-10-11 17:51:08 來源:億速云 閱讀:162 作者:iii 欄目:編程語言

本篇內容主要講解“如何編寫代碼實現兩數之和”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何編寫代碼實現兩數之和”吧!

一、說明

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

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

        示例:

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

                因為 nums[0] + nums[1] = 2 + 7 = 9 ,

                所以返回 [0, 1]

二、解決方案參考

        1. Swift 語言

如何編寫代碼實現兩數之和

         2. JavaScript 語言

如何編寫代碼實現兩數之和

         3. Python 語言

如何編寫代碼實現兩數之和

        4. Java 語言

如何編寫代碼實現兩數之和

如何編寫代碼實現兩數之和

如何編寫代碼實現兩數之和

        5. C++ 語言

如何編寫代碼實現兩數之和

        6. C 語言

#include <stdio.h>
#include <stdlib.h>

struct object {
    int val;
    int index;
};

static int compare(const void *a, const void *b)
{
    return ((struct object *) a)->val - ((struct object *) b)->val;
}

static int * twosum(int *nums, int numsSize, int target)
{
    int i, j;
    struct object *objs = malloc(numsSize * sizeof(*objs));
    for (i = 0; i < numsSize; i++) {
        objs[i].val = nums[i];
        objs[i].index = i;
    }
    qsort(objs, numsSize, sizeof(*objs), compare);
    
    int count = 0;
    int *results = malloc(2 * sizeof(int));
    i = 0;
    j = numsSize - 1;
    while (i < j) {
        int diff = target - objs[i].val;
        if (diff > objs[j].val) {
            while (++i < j && objs[i].val == objs[i - 1].val) {}
        } else if (diff < objs[j].val) {
            while (--j > i && objs[j].val == objs[j + 1].val) {}
        } else {
            results[0] = objs[i].index;
            results[1] = objs[j].index;
            return results;
        }
    }
    return NULL;
}

int main(void)
{
    //int nums[] = {-1, -2, -3, -4, -5};
    //int target = -8;
    //int nums[] = {0,4,3,0};
    //int target = 0;
    int nums[] = { 3, 2, 3 };
    int count = sizeof(nums) / sizeof(*nums);
    int target = 6;
    int *indexes = twosum(nums, count, target);
    if (indexes != NULL) {
        printf("%d %d
", indexes[0], indexes[1]);
    } else {
        printf("Not found
");
    }

    return 0;
}

到此,相信大家對“如何編寫代碼實現兩數之和”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁晋县| 合作市| 石泉县| 台北县| 临沧市| 如东县| 泰来县| 射洪县| 巍山| 尼玛县| 汾阳市| 独山县| 和政县| 德钦县| 金湖县| 太保市| 永寿县| 封开县| 肇源县| 巴彦县| 三江| 柏乡县| 芷江| 泽普县| 平南县| 克什克腾旗| 田阳县| 新巴尔虎右旗| 清水河县| 和政县| 老河口市| 德兴市| 灌南县| 方城县| 长子县| 开江县| 阜康市| 新竹市| 呼和浩特市| 正阳县| 石首市|