首頁  >  文章  >  後端開發  >  在C語言中,列印已排序的陣列中的不重複元素

在C語言中,列印已排序的陣列中的不重複元素

王林
王林轉載
2023-09-20 17:05:01789瀏覽

給定一個整數元素的數組,任務是刪除重複的值並以排序的方式列印不同的元素。

下面給出了一個以4、6、5、3、4、5、2、8、7和0的順序儲存整數類型值的數組,現在,結果將以0、2、3 、4、4、5、5、6、7和8的順序列印出排序的元素,但是這個結果仍然包含重複的值4和5,應該將它們刪除,最終的結果將是0、2、3、 4、5、6、7和8

在C語言中,列印已排序的陣列中的不重複元素

範例

Input: array[] = {4, 6, 5, 3, 4, 5, 2, 8, 7, 0}
Output: 0 2 3 4 5 6 7 8

解釋

所以,為了達到我們的目標,我們將

  • 將不同的元素儲存在另一個陣列array1中。
  • 對array1進行排序。
  • 列印array1的值。

演算法

START
   STEP 1: DECLARE VARIABLES i, j, array1[size], temp, count = 0
   STEP 2: LOOP FOR i = 0 AND i < size AND i++
      LOOP FOR j = i+1 AND j < size AND j++
         IF array[i] == array[j]) then,
            break
         END IF
      END FOR
      IF j == size then,
         ASSIGN array1[count++] WITH array[i]
      END IF
   END FOR
   STEP 3: LOOP FOR i = 0 AND i < count-1 AND i++
      LOOP FOR j = i+1 AND j < count AND j++
         IF array1[i]>array1[j] then,
            SWAP array1[i] AND array[j]
         END IF
      END FOR
   END FOR
   STEP 4: PRINT array1
STOP

#範例

#include <stdio.h>
/* Prints distinct elements of an array */
void printDistinctElements(int array[], int size) {
   int i, j, array1[size], temp, count = 0;
   for(i = 0; i < size; i++) {
      for(j = i+1; j < size; j++) {
         if(array[i] == array[j]) {
            /* Duplicate element found */
            break;
         }
      }
      /* If j is equal to size, it means we traversed whole
      array and didn&#39;t found a duplicate of array[i] */
      if(j == size) {
         array1[count++] = array[i];
      }
   }
   //sorting the array1 where only the distinct values are stored
   for ( i = 0; i < count-1; i++) {
      for ( j = i+1; j < count; j++) {
         if(array1[i]>array1[j]) {
            temp = array1[i];
            array1[i] = array1[j];
            array1[j] = temp;
         }
      }
   }
   for ( i = 0; i < count; ++i) {
      printf("%d ", array1[i]);
   }
}
int main() {
   int array[] = {4, 6, 5, 3, 4, 5, 2, 8, 7, 0};
   int n = sizeof(array)/sizeof(array[0]);
   printDistinctElements(array, n);
   return 0;
}

輸出

如果我們執行上面的程式,它將產生以下輸出。

0 2 3 4 5 6 7 8

以上是在C語言中,列印已排序的陣列中的不重複元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除