Online Java8 Compiler

// Java code to find a pair with given sum // in a Balanced BST import java.util.ArrayList; // A binary tree node class Node1 { int data1; Node1 left1, right1; Node1(int d) { data1 = d; left1 = right1 = null; } } public class BinarySearchTree { // Indicates root of BST Node1 root1; // Indicates constructor BinarySearchTree() { root1 = null; } // Indicates inorder traversal of the tree void inorder() { inorderUtil1(this.root1); } // Indicates utility function for inorder traversal of the tree void inorderUtil1(Node1 node1) { if (node1 == null) return; inorderUtil1(node1.left1); System.out.print(node1.data1 + " "); inorderUtil1(node1.right1); } // Now this method mainly calls insertRec() void insert(int key1) { root1 = insertRec1(root1, key1); } /* Indicates a recursive function to insert a new key in BST */ Node1 insertRec1(Node1 root1, int data1) { /* So if the tree is empty, return a new node */ if (root1 == null) { root1 = new Node1(data1); return root1; } /* Otherwise, recur down the tree */ if (data1 < root1.data1) root1.left1 = insertRec1(root1.left1, data1); else if (data1 > root1.data1) root1.right1 = insertRec1(root1.right1, data1); return root1; } // Indicates method that adds values of given BST into ArrayList // and hence returns the ArrayList ArrayList<Integer> treeToList(Node1 node1, ArrayList<Integer> list1) { // Indicates Base Case if (node1 == null) return list1; treeToList(node1.left1, list1); list1.add(node1.data1); treeToList(node1.right1, list1); return list1; } // Indicates method that checks if there is a pair present boolean isPairPresent(Node1 node1, int target1) { // Now this list a1 is passed as an argument // in treeToList method // which is later on filled by the values of BST ArrayList<Integer> a1 = new ArrayList<>(); // Now a2 list contains all the values of BST // returned by treeToList method ArrayList<Integer> a2 = treeToList(node1, a1); int start1 = 0; // Indicates starting index of a2 int end1 = a2.size() - 1; // Indicates ending index of a2 while (start1 < end1) { if (a2.get(start1) + a2.get(end1) == target1) // Target Found! { System.out.println("Pair Found: " + a2.get(start1) + " + " + a2.get(end1) + " " + "= " + target1); return true; } if (a2.get(start1) + a2.get(end1) > target1) // decrements end { end1--; } if (a2.get(start1) + a2.get(end1) < target1) // increments start { start1++; } } System.out.println("No such values are found!"); return false; } // Driver function public static void main(String[] args) { BinarySearchTree tree1 = new BinarySearchTree(); /* 16 / \ 11 21 / \ / \ 9 13 17 26 */ tree1.insert(16); tree1.insert(11); tree1.insert(21); tree1.insert(9); tree1.insert(13); tree1.insert(17); tree1.insert(26); tree1.isPairPresent(tree1.root1, 34); } }

About Online Java8 Compiler

Try our Online Java8 Compiler (Version OpenJDK 11.0.17) to Edit, Run, and Share your Java8 Code directly from your browser. This online development environment provides you the latest version OpenJDK 11.0.17.

How to use Online Java8 Compiler?

Write and Execute Code

  • Write your program (or, paste it) directly under the "Source Code" tab.
  • If you want to save your program, go to the "Project" menu and save it.
  • You can directly execute your program without saving it by clicking on on "Execute" button.

User Input

The latest version of Coding Ground allows to provide program input at run time from the termnial window exactly the same way as you run your program at your own computer. So simply run a program and provide your program input (if any) from the terminal window available in the right side.

Online Java8 Compiler: Keyboard Shortcuts

The following are the keyword shortcut of this Online Java8 Compiler:

ShortcutDescription
⌘ + EnterRun the program
⌘ + SSave Project (Login Required)
⇧ + ⌘ + SSave As Project
⌘ + PNew Project
⌘ + GShare Project
⌘ + ZUndo Editing
⌘ + YRedo Editing
⌘ + ASelect All Text
⌘ + XCut Selected Text
⌘ + CCopy Selected Text
⌘ + VPaste Copied Text
⌘ + FSearch Text
⌘ + ⌥ + FReplace Text
ShortcutDescription
Ctrl + EnterRun the program
Ctrl + SSave Project
Shift + Ctrl + SSave As Project
Ctrl + GShare Project
Ctrl + ZUndo Editing
Ctrl + YRedo Editing
Ctrl + ASelect All Text
Ctrl + XCut Selected Text
Ctrl + CCopy Selected Text
Ctrl + VPaste Copied Text
Ctrl + FSearch Text
Ctrl + HReplace Text

Online Java8 Compiler: Save and Share Java8 Code (Project)

Save Java8 Project Online

You can save your Java8 Project with us so that you can access this project later on. To save a project you will need to create a login Id with us. So before you save a project, please create a login Id using a link given at the top right corner of this page.

Share Java8 Project Online

You can use this feature to share your Java8 Code with your teachers, classmates and colleagues. Just click Share Button and it will create a short link, which can be shared through Email, WhatsApp or even through Social Media. A shared link will be deleted if it has been passive for almost 3 months.

More Features of Online Java8 Compiler

  • Theme – You can change the current editor's theme from the "Editor Theme" option under "Settings" menu.
  • Font Size – You can change the font size of the editor /compiler from from the "Font Size" option under "Settings" menu.
  • Tab Size – You can change the tab size from the "Tab Size" option under "Settings" Menu.
  • Show/Hide Line Numbers – You can show/hide the line number with the code from the "Show Line Numbers" or "Hide Line Numbers" option under "Settings" Menu.
  • And, many more.

Benefits of Using Online Java8 Compiler

There are several benefits of using the Online Java8 Compiler to run your Java8 code:

  • Platform independence: You can run your code from any device without taking care of operating systems.
  • Convenience: You don't need to install anything for using this.
  • No setup required: There is no need for additional setup to run your code.
  • Updated version: Our online compiler/editors/terminals are the latest up-to-date.
 Execute |  Beautify | Share
My Projects
Change Password
My Profile
Logout
Undo
Redo
Cut
Copy
Paste
Delete
Select All
Find
Find and Replace
Editor Theme
Crimson
Eclipse
Github
Solarized
Cobalt
krTheme
Monokai
Terminal
Textmate
Twilight
Vibrant Ink
Font Size
8px
9px
10px
11px
12px
13px
14px
15px
16px
17px
18px
20px
22px
24px
Tab Size
1
2
3
4
5
6
7
8
Show Invisible
Hide Invisible
Show Line Numbers
Hide Line Numbers
Ace Editor (Default)
Vim Editor
Emacs Editor
Open New Project
Save Project
Save As New Project
Share Project
Search Project
Online Java Compiler
Online Python Compiler
Online C++ Compiler
Online CSharp Compiler
Online C Compiler
Online PHP Compiler
Online R Compiler
Online NumPy Compiler
More Compilers