Posts

Quiz Aplikom

Image
Sam...ari ini kita quiz ya ini soalnya ya...   silahkan dikerjakan ya....!

Quiz test..Alpro2

Salam... Soal quiz aplro ini dikerjakan di Lab B404 Gedung B UTama, sifat Open Book.waktu : 11 -12.40 Soal. Diketahui Tabel Z berisi angka-angka sebagai berikut : 11 5 6 222 3 5 12 7 10 9 4 Soal 1: a). Uraikan langkah-langkahnya dengan konsep DIvide and Conquer dan urutkan dengan metode Merge-Sort b). Uraikan langkah-langkahnya dengan konsep DIvide and Conquer dan urutkan dengan metode Insertion-Sort c). Uraikan langkah-langkahnya dengan konsep DIvide and Conquer dan urutkan dengan metode Quick-Sort d). Uraikan langkah-langkahnya dengan konsep DIvide and Conquer dan urutkan dengan metode Selection-Sort Soal 2: Buat implementasi programnya dalam bahasa C++ (pilih salah poin [a,b,c atau d]). Semoga sukses...!

Materi Algoritma dan Pemrograman 2

Sialhkan download materi Alpro 2 disini disni aja

Program BackTracking

#include <stdio.h> #include <stdlib.h> /* macro to define limits*/ #define MAX_X 4 #define MAX_Y 9 #define END_X 3 #define END_Y 8 /* define structure for one point    with coordinate x and y */ typedef struct P{int x,y;}; /* functions to present path through matrix,    check if next move is valid    with backtrack technique */ void presentPath(P[],int); int tryC(int m[][MAX_Y],int,int); void checkPaths(int m[][MAX_Y],int,int,P[],int); int main() { /* declare start position and    matrix we are searching paths*/   int sX=0, sY=0,       m[MAX_X][MAX_Y]=      {       {0,0,0,1,1,1,0,0,0},       {1,1,0,0,0,0,0,0,0},       {1,0,1,0,0,1,0,1,0},       {0,0,1,1,0,1,1,1,0}      };     /* array that will serve to memorize the each path */   P Path[MAX_X+MAX_Y+1];     /* let...

Insertion_Sort_for_Practice

#include <iostream> #include <conio.h> using namespace std ; int data[10],data2[10]; int n; void tukar(int a, int b) {  int t;  t = data[b];  data[b] = data[a];  data[a] = t; } void insertion_sort() {  int temp,i,j;  for(i=1;i<=n;i++)  {   temp = data[i];   j = i -1;   while(data[j]>temp && j>=0)   {    data[j+1] = data[j];    j--;   }  data[j+1] = temp;  } } int main() {  cout<<"\t\t\t===PROGRAM INSERTION SORT===\n\n"<<endl;  //Input Data  cout<<"Masukkan Jumlah Data : ";  cin>>n;  cout<<"\n";  for(int i=1;i<=n;i++)  {   cout<<"Masukkan data ke "<<i<<" : ";   cin>>data[i];   data2[i]=data[i];  }  insertion_sort();  cout<<"\n\n";  //tampilkan data  cout<<"Data Setelah di Sort : ";  for(int i=1; i<=n; i++)  {   ...

Merge_n_Insertion_sorting

// include file #include <condefs.h> #include <conio> #include <iostream> #include <fstream> //dibatasi memori 52 #define MAXLIST 52 #define MAXINT (int) (2147483647) using namespace std; //struktur data kita tetap dan fleksible typedef char item_type; typedef struct node_tag; {   Item_type info;   struct node_tag *next; } Node_type; typdedef struct list_ag {   Node_type *head;   Node_type *tail; } List_type; //prototype fungsi operasi pada link list void AddNode(List_type* ,Item_type , const int opt=0); void DeleteNode(List_type , Item_type); void Error (char*); bool ExtractLine(Item_type& , Item_type); void InitList(List_type* ); Node_type *MergeSort(Node_type *p); List_type *InsertionSort (List_type *); bool FindItem(const List_type* ,Item_type); void Transverse(const List_type* ,void (*Visit) (ItemType)); void Visit(Item_type); char Menu(void); void CopyList(const List_type *, List_type *); void BatchSort(List_type *list_ptr); //var gl...

Tugas_for_Aplro_DivideNconquer

#include <cstdlib> #include <iostream> using namespace std; void minmax2(int A[], int i, int j, int &min, int &max ){      /*      Mencari nilai maksimum dan minimum di dalam tabel A yang      berukuran n elemen secara Divide and Conquer.      Masukan: tabel A yang sudah terdefinisi elemen-elemennya      Keluaran: nilai maksimum dan nilai minimum tabel      */      int min1, min2, max1, max2,k;      if(i==j){               min=A[i];               max=A[i];               }      else if(i==j-1){           if(A[i]<A[j]){      ...

Linked List--Menu

Well, here is example of Linked List for Student record... #include <conio.h> #include <iostream.h> #include <malloc.h> #include <stddef.h> #include <string.h> #include <stdio.h> struct List{     int NIM;     char Nama[20];     float IPK;     List *Next;     }; List *Head, *Baru, *PNow, *PAkhir, *HNow, *HBfr; int Pilih; int main() {  Head = new(List);  Head -> Next = NULL;  do  {   //clrscr();   cout<<"\n*************************\n";   cout<<"*  M E N U   U T A M A           *\n";   cout<<"* 1. Add Data (di akhir)         *\n";   cout<<"* 2. Add Data (di awal)          *\n";         cout<<"* 3. View Data  ...

Join to OOP_IF group

Salam, Hi Students., here is I share the link to join on OOP_IF  group OOP_IF link
Well, here is the sample of TicTac game developed in Java, Ok, try to develop in C++. import java.awt.*; import java.awt.event.*; import javax.swing.*; public class TicTac2 implements ActionListener {     private int[][] winCombinations = new int[][] { { 0, 1, 2 }, { 3, 4, 5 },{ 6, 7, 8 },             { 0, 3, 6 },{ 1, 4, 7 }, { 2, 5, 8 },{ 0, 4, 8 }, { 2, 4, 6 }};     private JFrame window = new JFrame("Catur Jawa");     private JButton buttons[] = new JButton[9];     private int count = 0;     private String letter = "";     private boolean win = false;     private static int startCount = 0;     JMenuBar menu = new JMenuBar();     JMenuItem newGame = new JMenuItem("New Game"), instr = new JMenuItem(             "Instructions"), exit = new JMenuItem("Exit"), ...

Ending Perkuliahan; clue for Final Test of Mobile Programming

Image
Bismilahirohmanirohiim Salam teman-teman Mahasiswa, Tanggal 15/12/15 insyaAllah kita UAS serentak, IFA kls pagi (7.00 - 8.30) disatukan langsung; tidak jadi dipisah, Kls IFB ja, 8.40 - 10.20 Mohon maaf semester ini banyak Tugas Besar setidaknya ada 2 Tugas Besar kelompok dan 3 nilai Live Codding sebagai pengganti Quiz, sedikit berbeda dengan pengajaran di mobile porgramming semester lalu dimana saya mengacu pada SAP; diajarkan mulai asrsitektur, widget, listView, Spinner, Array  dan Database baru TUBES, kenapa dilakukan hal seperti ini karena anda mahasiswa PTN dan saya sudah assesment anda semua mampu, apalagi di praktikum ada Pak. Aldi, di komunitas ada Android komunitas. ---Notes : -Semua hasil dai tugas besar 2 di burning dalam 1 CD include (Dokumen SKPL, Produk program Android yang anda buat dan Team; About Team programmer yang develop aplikasi tersebut,  PDF cara instalasi dan menggunakannya) Sehingga bisa bermanfaat untuk orang lain, dikumpul hari selasa tgl. 1...

E-Learning Class for Tuesday, September 29, 2015

Please call on to the Group of https://groups.google.com/forum/#!forum/mobiprog, there is lesson and task to do... the task will be scored insyaAllah on October 6, 2015.

Donwload Pro_Pegawai Project in Visual Basic.Net and SQL Server

Here is the link, the code is built in Visual Studio 2010 but you can build in other version. Download the source

E-learning class for today

Assalamu'alaikum All Students, I really sorry for this morning, I didn't teach directly in the class room because something :), Ok, here I attached the link, in the next time the e-learning will be done by some processes bellow : the first  you All see the general material at http://duniaedukasi.blogspot.com then find the subject for the material, the link will be direct to Google Group, if there is possible the class also will be "Skype Meeting". You have to all send email to blog.ader@gmail.com that have a subject (your NIM, Name, and Class) as a changed for your attendance class, remember must be in your own email. for today here is the link to " https://groups.google.com/forum/?hl=id#!forum/mobiprog ". If you are new university students, please register to link above, then Insya Allah I will approve you all to access the Google Group soon.

Feeling happines in Ramadhan Month 1436H -- some good deeds

Image
Alhamdulilah, we are in 7 day of Ramdahan 1436 H, so, what can we do in Ramadhan month to increase our faith to Allah SWT, here perhaps some things that can be done in Ramadhan month : 1. Fasting of Ramadhan This month is so fantastic month for Moslems, every good deeds will be count more than usual month, if we conduct prayer individually it will be count like we pray together, Subhanallah... 2. Conduct Tarawih prayer in our usual month, perhaps for someone who usually conduct "tahajud prayer" in this Ramadhan changed to "tarawih prayer", although there are difrerent thing whether conducted 11 'rakaat' or 23 'rakaat', the most important thing is we must conduct 'tarawih prayer', isn't it :) 3. Read holly qur'an to read holy qur'an is our obligation as Moslems beside conduct prayer and other deeds, it's not only read holly qur'an but also try to learn and implement it (it called 'tadabur' qur'an)...

Gimana sih cara mereset ulang ID BBM?

Image
What a pity, my daughter always ask me, " ayah, please repair my ID BBM", oh anak TK pun sekarang maenanya sudah BBM, jaman ayah dulu maennya petak umpet melulu :). Cara reset blackberry ID BBM karena lupa password. Untuk anda yang mengalami masalah dengan email / password bbm yang tidak bisa login, berikut kami sajikan tips trik mengatasi lupa password blackberry ID bbm di hp android, blackberry, iOs iPhone ataupun windows phone. Cara logout bbm/ blackberry ID dan juga cara merubah email dan password bbm. Hadirnya aplikasi blackberry messenger untuk semua platform OS benar- benar membawa pengaruh besar pada penjualan smartphone khususnya untuk smartphone maupun tablet android. Angka kenaikan penjualan handphone android mengalami peningkatan hampir 80% jika dibandingkan dengan periode tahun- tahun sebelumnya. Terkait dengan informasi mengenai cara reset blackberry ID BBM, kehadiran aplikasi bbm di android dan platform lain ini ternyata juga sedikit membuat penggunanya ke...

Alhamdulilah..Terimakasih ya Allah, terimakasih dr. delle hanelia Amali

Image
Alhamdulilah telah lahir putra kami pada hari kamis, 14 mei 2015 lalu di Rumah sakit Al-Islam Bandung jam 21.46. putra kami diberi nama Muhammad Salman Al-Khwarizmi. Nama Muhammad diambil dari nama Rosullulah Muhammad SAW, Salman dimbil dari potongan Salman Al-farizi sahabat rosullullah gubernur yang soleh, cerdas pemberi ide pada perang khandak yang membuat kemenangan bagi kaum muslimim, terakhir Al-Khwarizmi diambil dari Al-Khwarizm bapak Aljabar, cendekiawan muslim, sebut lah Bapak Informatika... :). Pengalaman proses melahirkan di RS. Al-Islam alhamduilah sangat memuaskan, dari mulai dapat rekomendasi lahiran secara sc (Caesar) dari dr. delle, beliau luar biasa dari awal tidak memvonis istri harus caesar, meskipun putra kami yang pertama Khansa Deya Nur Dzakirah lahiran secara caesar pula di RSUD. 45 Kuningan, beliau (read: dr. delle) dengan santun, semangat memberi semangat jika berusaha istri saya dapat melahirkan normal meski pun bayi yang akan dilahirkan besar lagi sekit...

Do you wanna be Lecturer?

Image
Last monday, I attended workshoop at PD Dikti in Jatinangor, sumedang. the first speaker was realy great from Prof. DR. Abdul Hakim Halim as a coordinator of PD DIKTI previously coordinator of Kopertis IV Jabar and Banten, he is also as 'Guru Besar' in Industrial industry of ITB, there some interesting speech from him, bellow : some inspirational quotes(1) "there is no place for stoping in this way, latenes of attitude is definied as death, for the one who moves, if they just stop for a while, they will be crashed" said Muhamad Iqbal. then..let's look inspirational quotes(2) from Steve Jobs, "I was lucky -- I found what I loved to do early in life","I had been rejected but I was still in love","the only way to do great work is to love what you do","your time is limited, so don't waste it living someone else's life". I as a personal entirely agree with Prof. Hakim said, we as aLecturer have theree poits o...

New Forum for OOP_IF_UIN Sunan Gunung Djati Bandung

"Salam, para penggemar...", here I attached a link for join in Google Group of OOP_IF. This group consists of some materials of Object Oriented Programming using Java as tool of deelopment. for some university students who take this lesson, please register to lnk below https://groups.google.com/forum/?hl=id#!forum/oop_if Of course some materials which already downloaded, you must read it, learn it and try to implement in some tools of Programming such as Elipse, NetBean and Visual Studi using Visual Basic.Net. it will be very useless, if the materials just fill in your Notebook PC, won't it. Best regard, your Lecturer Ader

International Seminar at ITB 2015

Image
Call for paper : Asalamu'alaikum researchers... The International Conference on Electrical Engineering and Informatics (ICEEI2015) will be held in Bali, Indonesia on August 10 – 11, 2015. This conference is an international event organized by the School of Electrical Engineering and Informatics, ITB, Indonesia and co-organised by Faculty of Information Science & Technology, UKM, Malaysia. The purpose of this conference is to provide a forum for researchers, scientists and engineers from all over the world to exchange ideas and discuss recent progress in all fields of electrical engineering and informatics from basic science to practical applications. The organizing committee cordially invites you to participate in the conference. Topic The scopes of the conference are Power Engineering, Telecommunication, Control Engineering, Information Technology, Electronics, Informatics, Data Base and Software Engineering, Biomedical Engineering and Computer Engineering Original papers o...