1 / 7

Contoh Aplikasi Array

Contoh Aplikasi Array. Sorting (Bubble Sort). Algoritma Bubble Sort. #include < iostream.h > #include < conio.h > #include < iomanip.h > void main() { int i , j, temp, jumdata ;. Lanjutan. for ( i =0; i <jumdata-1; i ++) for (j=i+1; j< jumdata ; j++) if (data[ i ] > data[j]

Télécharger la présentation

Contoh Aplikasi Array

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. ContohAplikasi Array Sorting (Bubble Sort)

  2. Algoritma Bubble Sort #include < iostream.h> #include < conio.h> #include <iomanip.h> void main() { inti, j, temp, jumdata;

  3. Lanjutan for (i=0; i<jumdata-1; i++) for (j=i+1; j<jumdata; j++) if (data[i] > data[j] { temp = data[i]; data[i] = data[j]; data[j] = temp; } }

  4. Contoh (2) #include <stdio.h> void main() { inti, j, k, barisA, kolomA, kolomB; intmatrikA[100][100], matrikB[100][100], matrikC[100][100];

  5. printf (“BarisMatriks A = “); scanf (“%d”, &barisA); printf (“KolomMatriks A = “); scanf (“%d”, &kolomA); printf (“\n”); printf (“KolomMatriks B = “); scanf (“%d”, &kolomB); printf (“\n”); /* Data Matriks A */ for (i=0; i<barisA; i++) for (j=0; j<kolomA; j++) { printf (“A (%3d, %3d)”, i+1, j+1); scanf (“%d”, &matrikA[i][j]); } printf (“\n”); }

  6. /* Data Matriks B */ for (i=0; i<barisA; i++) for (j=0; j<kolomB; j++) { printf (“B (%3d, %3d)”, i+1, j+1); scanf (“%d”, &matrikB[i][j]); } printf (“\n”);

  7. /* PerkalianMatriks A dan B */ for (i=0; i<barisA; i++) { for (k=0; k<kolomB; k++) { matrikC [i][k] = 0; for (j=0; j<kolomA; j++) matrikC[i][j] += matrikA[i][j] * matrikB[j][k]; } }

More Related