أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
if it's sorted use a variable to store first integer and iterate while comparing like this:
int iterator=0
int temp
do{
temp = array[iterator]
iterator+1
}while(temp != array[iterator])
if not sorted either sort with the fastest sorting algorithm available to you then use above method
créer deux tableaux vides un contient le tableau sans récurrence et l'autre contient les valeurs répété puis parcourir le tableau a "N" fois chaque fois lire l'index N est comparer avec tout les cellules de tableau sauf le case N si il existe donc il y a une récurrence quelque part si non le valeur n’existe pas, par contre partie si le valeur existe ajouter dans le tableau qui contient les répétition si non ajoute dans le tableau des valeur non itérative ,
1- Define a variable to store the the duplicated index, outside the loop2- Loop through the array elements from index:0 to index: not-->> to prevent the comparison from exceeding the array Upper Bound
3- Compare equality between the current element value and the next one
4- If there a duplication store it's index in the breviously defined variable