master
irist 2023-04-25 11:08:41 +02:00
parent 6a99534f1d
commit 1adfc9d8d0
3 changed files with 14 additions and 1 deletions

View File

@ -1,4 +1,4 @@
package Generics;
package indexverwaltung;
import java.util.ArrayList;

View File

@ -0,0 +1,12 @@
package postfixNotation;
public class Item {
// Konstruktor
Item(char z, int w) {
zeichen = z;
prio = w;
}
char zeichen;
int prio;
}

View File

@ -0,0 +1 @@
package postfixNotation;