package collections.queue;
import java.util.LinkedList;
import java.util.List;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class TestJavaMarkdown { | |
| public static void main(String[] args) { | |
| System.out.print("This is just a test class"); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved. | |
| * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. | |
| * | |
| * This is a modified version of javax.swing.tree.DefaultMutableTreeNode | |
| * from Oracle Java 8. | |
| */ | |
| package com.github.mike10004.tree; | |
| import javax.annotation.Nullable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * | |
| * Dinesh | |
| * | |
| * RootedTreeTraversal | |
| * - Preorder Traversal | |
| * - Postorder Traversal | |
| * - Inorder Traversal | |
| * - Levelorder Traversal | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Vagrant::Config.run do |config| | |
| # ... | |
| config.vm.customize ["modifyvm", :id, "--natdnshostresolver1", "on"] | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <target name="diagnostics"> | |
| <pathconvert property="classpathProp" refid="common.classpathref"/> | |
| <echo>Classpath is ${classpathProp}</echo> | |
| </target> | |
| <target name="compile" depends="diagnostics"> | |
| <!-- compile goes here --> | |
| </target> | |