Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package dvostruko;
- public class CvorDSL {
- public int podatak;
- public CvorDSL sledeci;
- public CvorDSL prethodni;
- public CvorDSL(int podatak,CvorDSL prethodni,CvorDSL sledeci) {
- this.podatak = podatak;
- this.sledeci = sledeci;
- this.prethodni = prethodni;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement