кодесурса
«C

Упражнения на Си: получить индексы двух чисел для данного массива целых чисел

script1adsense2code
script1adsense3code

Практика программирования C: Упражнение 1 с решением

Напишите C-программирование, чтобы получить индексы двух чисел данного массива целых чисел, чтобы сумма двух чисел была равна определенной цели.

Код 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 * two_sum(int *nums, int nums_size, int target)
{
    int i, j;
    struct object *objes = malloc(nums_size * sizeof(*objes));
    for (i = 0; i < nums_size; i++) {
        objes[i].val = nums[i];
        objes[i].index = i;
    }
    qsort(objes, nums_size, sizeof(*objes), compare);
    
    int *results = malloc(2 * sizeof(int));
    i = 0;
    j = nums_size - 1;
    while (i < j) {
        int diff = target - objes[i].val;
        if (diff > objes[j].val) {
            while (++i < j && objes[i].val == objes[i - 1].val) {}
        } else if (diff < objes[j].val) {
            while (--j > i && objes[j].val == objes[j + 1].val) {}
        } else {
            results[0] = objes[i].index;
            results[1] = objes[j].index;
            return results;
        }
    }
    return NULL;
}
int main(void)
{
    int nums[] = { 4, 2, 1, 5 };
    int ctr = sizeof(nums) / sizeof(*nums);
    int target = 7;
	int i;
	printf("Original Array: ");
	for(i=0; i<ctr; i++)
    {
        printf("%d  ", nums[i]);
    }
    printf("\nTarget Value: %d", target);
    int *indexes = two_sum(nums, ctr, target);
    if (indexes != NULL) {
		printf("\nIndices of the two numbers whose sum equal to target value: %d", target);
        printf("\n%d %d\n", indexes[0], indexes[1]);
    } 
	else
	{
        printf("Not found or matched\n");
    }
    return 0;
}

Пример вывода:

 Исходный массив: 4 2 1 5  
Целевое значение: 7
Индексы двух чисел, сумма которых равна целевому значению: 7
1 3

Иллюстрированная презентация:

«C

Блок - схема:

«C

Решение

Внесите свой код и комментарии через Disqus.

Предыдущий: C программирование Упражнения Введение
Далее: Напишите программу на C, чтобы найти длину самой длинной подстроки данной строки без повторяющихся символов.

Каков уровень сложности этого упражнения?

Новый контент: Composer: менеджер зависимостей для PHP , R программирования


script1adsense4code
script1adsense5code
disqus2code
script1adsense6code
script1adsense7code
script1adsense8code
buysellads2code