Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

Linear Data Structures (Stack)

Presentasi serupa


Presentasi berjudul: "Linear Data Structures (Stack)"— Transcript presentasi:

1 Linear Data Structures (Stack)
Oleh : Nur Hayatin, S.ST Teknik Informatika - Universitas Muhammadiyah Malang (UMM) Tahun Akademik

2 Sub Topik Stack Operasi Stack Implementasi stack Latihan

3 STACK (Tumpukan)

4

5 Definisi Urutan elemen yang mengikuti konsep LIFO.
LIFO (Last In First Out) Add & remove dilakukan dari atas (top)

6 Gambaran Top : elemen paling atas Bottom : elemen paling bawah bottom
C A B D E F bottom top C A B D E Top : elemen paling atas Bottom : elemen paling bawah

7 Operasi Stack

8 Operasi Pop (operasi pengambilan elemen)
Push (operasi penambahan elemen) Peek (operasi pengaksesan elemen)

9 Operasi POP Operasi pop pada stack dilakukan pada elemen paling atas

10 Operasi Push Operasi push pada stack dilakukan pada elemen yang paling atas

11 Operasi peek Pengambilan/pengaksesan elemen paling atas (top) pada stack.

12 Proses Operasi Stack Contoh lain adalah ada sekumpulan perintah stack yaitu push(5), push(7), pop, push(3), pop. Jika dijalankan, maka yang akan terjadi adalah : -1 -1

13 Stack dengan Array ? ? -1 1 1 2 1

14 Stack dengan Linked List

15 Contoh Penerapan Stack
Konversi Desimal ke Biner Notasi Polish Menara Hanoi Rat In a Maze

16 Implementasi Stack (Notasi Polish)

17 Notasi Polish (1) Menggubah notasi infix menjadi notasi postfix.
Contoh : A+B (infix) AB+ (postfix)

18 Algoritma Misal : Q = ekspresi matematika yang ditulis dalam notasi infix P = penampung ekspresi matematika dalam notasi postfix

19 Algoritma Push tanda “(“ ke stack dan tambahkan tanda “)” di sentinel di Q. Scan Q dari kiri ke kanan, kemudian ulangi langkah c s.d f untuk setiap elemen Q sampai stack Q kosong. Jika yang discan adalah operand, maka tambahkan ke P Jika yang discan adalah “(“ maka push ke stack Jika yang discan adalah “)” maka pop isi stack sampai ditemukan tanda “(“, kemudian tambahkan ke P sedangkan tanda “(“ tidak disertakanke P. Jika yang discan adalah operator, maka : - Jika elemen paling atas dari stack adalah operator yang mempunyai tingkatan sama atau lebih tinggi dari operator yang discan, maka pop operator tsb dan tambahkan ke P. - Push operator tersebut ke stack. Keluar

20 Contoh Q = A + ( B * C - ( D / E ^ F ) * G ) * H

21 Penyelesaian Q = A + ( B * C - ( D / E ^ F ) * G ) * H >> setelah ditambahkan tanda “)” pada notasi sehingga terdapat 20 simbol sbb :

22 Penyelesaian

23 Penyelesaian Hasil akhir :
Dari proses di atas didapatkan notasi postfix Q = ABC*DEF^/G*-H*+

24 Notasi Polish (2) Menghitung ekspresi matematika yang disusun dalam notasi postfix. Contoh : 2,5,* (postfix) Hasil : 10

25 Algoritma Misal : P adalah ekspresi matematika yang ditulis dalam notasi postfix. variable value sebagai penampung hasil akhir.

26 Algoritma Tambahkan tanda “)” pada sentinel di P
Scan P dari kiri ke kanan, ulangi langkah c dan d untuk setiap elemen P sampai ditemukan sentinel. Jika yang discan adalah operand, maka push ke stack. Jika yang discan adalah operator (sebut opr1), maka Pop 1 buah elemen teratas dari stack, simpan dalam variable var1. Pop 1 buah elemen teratas dari stack, simpan dalam variable var2. Hitung variable (var2 opr1 var1), simpan hasil di variable hitung. Push variable hitung ke stack. Pop isi stack dan simpan di variable value. Keluar.

27 Contoh Kasus P = 5, 2, 6, +, *, 12, 4, /, -

28 Penyelesaian P = 5, 2, 6, +, *, 12, 4, /, - Tambahkan tanda “)”pada sentinel P sehingga P = 5, 2, 6, +, *, 12, 4, /, -, ) Didapatkan 10 simbol yaitu :

29 Penyelesaian Hasil : Didapatkan Bilangan 37

30 Penambahan, pengurangan
Operator Priority ^ Pangkat, akar /, * Pembagian, perkalian +, - Penambahan, pengurangan

31 Latihan 1. Ubah notasi infix berikut ke dalam bentuk notasi postfix : A+((B*C/D)-(E^F)) M*(N^O)/P-(Q+R) (R*S+T)^U/(V-W+X)

32 Latihan 2. Hitung ekspresi matematika berikut yang disusun dalam bentuk postfix : 2,2,3,+,*,3,2,-,* B,2,^, 4, –, a, *, c, *, 2, a, *, /, p, q, *, a, b, +, /, +

33 Class ArrayStack

34 The Interface Stack public interface Stack { public boolean empty();
public Object peek(); public void push(Object theObject); public Object pop(); } Choice of method names is the same as used in Java’s class java.util.Stack. Notice the difference in names of the method to check if an instance is empty—isEmpty for linear lists and empty for a stack.

35 Inisialisasi Awal public class ArrayStack implements Stack {
int top; // current top of stack Object [] stack; // element array

36 Constructor public ArrayStack(int initialCapacity) {
if (initialCapacity < 1) throw new IllegalArgumentException("initialCapacity must be >= 1"); stack = new Object [initialCapacity]; top = -1; } public ArrayStack() {this(10);}

37 Method empty() public boolean empty() { return top == -1; }

38 Method peek() public Object peek() { if (empty())
throw new EmptyStackException(); return stack[top]; }

39 Method push() public void push(Object theElement) {
if (top == stack.length - 1) stack = ChangeArrayLength.changeLength1D(stack, 2 * stack.length); stack[++top] = theElement; }

40 Method pop() public Object pop() { if (empty())
throw new EmptyStackException(); Object topElement = stack[top]; stack[top--] = null; // enable garbage collection return topElement; }

41 Method main() public static void main(String [] args) { int x;
ArrayStack s = new ArrayStack(3); // add a few elements s.push(new Integer(1)); s.push(new Integer(2)); s.push(new Integer(3)); s.push(new Integer(4)); // delete all elements while (!s.empty()) System.out.println("Top element is " + s.peek()); System.out.println("Removed the element " + s.pop()); }

42 Class LinkedStack

43 Class ChainNode class ChainNode { // package visible data members
Object element; ChainNode next; // package visible constructors ChainNode() {} ChainNode(Object element) {this.element = element;} ChainNode(Object element, ChainNode next) {this.element = element; this.next = next;} }

44 Inisialisasi Awal public class LinkedStack implements Stack {
protected ChainNode topNode;

45 Method isEmpty() public boolean empty() { return topNode == null; }

46 Method peek() public Object peek() { if (empty())
throw new EmptyStackException(); return topNode.element; }

47 Method push() public void push(Object theElement) {
topNode = new ChainNode(theElement, topNode); }

48 Method pop() public Object pop() { if (empty())
throw new EmptyStackException(); Object topElement = topNode.element; topNode = topNode.next; return topElement; }

49 Method main() public static void main(String [] args) {
LinkedStack s = new LinkedStack(); s.push(new Integer(1)); s.push(new Integer(2)); s.push(new Integer(3)); s.push(new Integer(4)); while (!s.empty()) System.out.println("Top element is " + s.peek()); System.out.println("Removed the element " + s.pop()); }

50 Pustaka Sartaj Sahni, Presentation L5 & L10
Jokonowo, Bambang S.Si, “Pemrograman Berorientasi Obyek”, Pusat pengembangan bahan ajar UMB, 2006. Noviyanto, “Pemrograman Berorientasi Obyek (PBO) – Array”, 2005 Nugroho, Adi, “Algoritma dan Struktur Data Dalam Bahasa Java”, ANDI Yogyakarta, 2008. Michaell Waite, ”Data Structures and Algorithms in Java”, SAMS, 2001


Download ppt "Linear Data Structures (Stack)"

Presentasi serupa


Iklan oleh Google