Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.BufferedReader;
- import java.io.InputStreamReader;
- import java.util.*;
- interface Tree<E> {
- ////////////Accessors ////////////
- public Node<E> root();
- public Node<E> parent(Node<E> node);
- public int childCount(Node<E> node);
- ////////////Transformers ////////////
- public void makeRoot(E elem);
- public Node<E> addChild(Node<E> node, E elem);
- public void remove(Node<E> node);
- ////////////Iterator ////////////
- public Iterator<E> children(Node<E> node);
- }
- interface Node<E> {
- public E getElement();
- public void setElement(E elem);
- }
- class SLLTree<E> implements Tree<E> {
- public SLLNode<E> root;
- public SLLTree() {
- root = null;
- }
- public Node<E> root() {
- return root;
- }
- public Node<E> parent(Node<E> node) {
- return ((SLLNode<E>) node).parent;
- }
- public int childCount(Node<E> node) {
- SLLNode<E> tmp = ((SLLNode<E>) node).firstChild;
- int num = 0;
- while (tmp != null) {
- tmp = tmp.sibling;
- num++;
- }
- return num;
- }
- public void makeRoot(E elem) {
- root = new SLLNode<E>(elem);
- }
- public Node<E> addChild(Node<E> node, E elem) {
- SLLNode<E> tmp = new SLLNode<E>(elem);
- SLLNode<E> curr = (SLLNode<E>) node;
- tmp.sibling = curr.firstChild;
- curr.firstChild = tmp;
- tmp.parent = curr;
- return tmp;
- }
- public Node<E> addChild(Node<E> node, SLLNode<E> tmp) {
- SLLNode<E> curr = (SLLNode<E>) node;
- tmp.sibling = curr.firstChild;
- curr.firstChild = tmp;
- tmp.parent = curr;
- return tmp;
- }
- public void remove(Node<E> node) {
- SLLNode<E> curr = (SLLNode<E>) node;
- if (curr.parent != null) {
- if (curr.parent.firstChild == curr) {
- // The node is the first child of its parent
- // Reconnect the parent to the next sibling
- curr.parent.firstChild = curr.sibling;
- } else {
- // The node is not the first child of its parent
- // Start from the first and search the node in the sibling list and remove it
- SLLNode<E> tmp = curr.parent.firstChild;
- while (tmp.sibling != curr) {
- tmp = tmp.sibling;
- }
- tmp.sibling = curr.sibling;
- }
- } else {
- root = null;
- }
- }
- class SLLTreeIterator<T> implements Iterator<T> {
- SLLNode<T> start, current;
- public SLLTreeIterator(SLLNode<T> node) {
- start = node;
- current = node;
- }
- public boolean hasNext() {
- return (current != null);
- }
- public T next() throws NoSuchElementException {
- if (current != null) {
- SLLNode<T> tmp = current;
- current = current.sibling;
- return tmp.getElement();
- } else {
- throw new NoSuchElementException();
- }
- }
- public void remove() {
- if (current != null) {
- current = current.sibling;
- }
- }
- }
- public Iterator<E> children(Node<E> node) {
- return new SLLTreeIterator<E>(((SLLNode<E>) node).firstChild);
- }
- void printTreeRecursive(Node<E> node, int level) {
- if (node == null)
- return;
- int i;
- SLLNode<E> tmp;
- for (i=0;i<level;i++)
- System.out.print(" ");
- System.out.println(node.getElement().toString());
- tmp = ((SLLNode<E>)node).firstChild;
- while (tmp != null) {
- printTreeRecursive(tmp, level+1);
- tmp = tmp.sibling;
- }
- }
- public void printTree() {
- printTreeRecursive(root, 0);
- }
- }
- class SLLNode<P> implements Node<P> {
- // Holds the links to the needed nodes
- public SLLNode<P> parent, sibling, firstChild;
- // Hold the data
- public P element;
- public SLLNode(P o) {
- element = o;
- parent = sibling = firstChild = null;
- }
- public P getElement() {
- return element;
- }
- public void setElement(P o) {
- element = o;
- }
- }
- public class WindowsExplorer {
- public static void main(String[] args) throws Exception {
- int i,j,k;
- BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
- int N = Integer.parseInt(br.readLine());
- String commands[] = new String[N];
- for (i=0;i<N;i++)
- commands[i] = br.readLine();
- br.close();
- SLLTree<String> tree = new SLLTree<String>();
- tree.makeRoot("c:");
- // vasiot kod stoi ovde
- SLLNode<String> opened=tree.root;
- for(int q=0;q<commands.length;q++){
- String [] pom=commands[q].split("\\s+");
- if(pom[0].equals("CREATE")){
- tree.addChild(opened,pom[1]);
- ArrayList<String> lista=new ArrayList<>();
- SLLNode<String> pomosen=opened.firstChild;
- while(pomosen!=null){
- lista.add(pomosen.element);
- pomosen=pomosen.sibling;
- }
- Collections.sort(lista);
- for(int w=lista.size()-1;w>=0;w--){
- SLLNode<String> pomosen1;
- pomosen1=null;
- pomosen=opened.firstChild;
- while(pomosen!=null){
- if(pomosen.element.equals(lista.get(w))){
- pomosen1=pomosen;
- tree.remove(pomosen);
- break;
- }
- pomosen=pomosen.sibling;
- }
- tree.addChild(opened,pomosen1);
- }
- }
- else if(pom[0].equals("OPEN")){
- SLLNode<String> pomosen=opened.firstChild;
- while(pomosen!=null){
- if(pomosen.element.equals(pom[1])){
- opened=pomosen;
- break;
- }
- pomosen=pomosen.sibling;
- }
- }
- else if(pom[0].equals("DELETE")){
- SLLNode<String> pomosen=opened.firstChild;
- while(pomosen!=null){
- if(pomosen.element.equals(pom[1])){
- tree.remove(pomosen);
- break;
- }
- pomosen=pomosen.sibling;
- }
- }
- else if(pom[0].equals("BACK")){
- if(tree.parent(opened)!=null)
- opened=(SLLNode<String>)tree.parent(opened);
- }
- else if(pom[0].equals("PATH")){
- ArrayList<String> rez=new ArrayList<>();
- SLLNode<String> pomosen=opened;
- while(pomosen!=null){
- rez.add(pomosen.element);
- pomosen=(SLLNode<String>)tree.parent(pomosen);
- }
- Collections.reverse(rez);
- for(int w=0;w<rez.size();w++){
- System.out.print(rez.get(w)+"\\");
- }
- System.out.println();
- }
- else if(pom[0].equals("PRINT")){
- tree.printTree();
- }
- }
- }
- }
Add Comment
Please, Sign In to add comment