Online C++ Compiler

// A C++ program to check if there // is a triplet with sum equal to 0 in // a given BST #include <bits/stdc++.h> using namespace std; //Shows a BST node which has key, and left and right pointers class node{ public: int key1; node *left1; node *right1; }; // Shows a function to convert given BST to Doubly // Linked List. left pointer is used // as previous pointer and right pointer // is used as next pointer. The function // sets *head1 to point to first and *tail1 // to point to last node of converted DLL void convertBSTtoDLL(node* root1, node** head1, node** tail1){ //Shows base case if (root1 == NULL) return; // Now at first convert the left subtree if (root1->left1) convertBSTtoDLL(root1->left1, head1, tail1); // After that change left of current root // as last node of left subtree root1->left1 = *tail1; // Now if tail1 is not NULL, then set right // of tail1 as root, else current // node is head if (*tail1) (*tail1)->right1 = root1; else *head1 = root1; // Used to update tail1 *tail1 = root1; if (root1->right1) convertBSTtoDLL(root1->right1, head1, tail1); } //Now this function returns true if there // is pair in DLL with sum equal to given // sum. bool isPresentInDLL(node* head1, node* tail1, int sum1){ while (head1 != tail1){ int curr1 = head1->key1 + tail1->key1; if (curr1 == sum1) return true; else if (curr1 > sum1) tail1 = tail1->left1; else head1 = head1->right1; } return false; } // Now we explain the main function that returns // true if there is a 0 sum triplet in // BST otherwise returns false bool isTripletPresent(node *root1){ // Verify if the given BST is empty if (root1 == NULL) return false; // Now convert given BST to doubly linked list. head and tail store the // pointers to first and last nodes in DLL node* head1 = NULL; node* tail1 = NULL; convertBSTtoDLL(root1, &head1, &tail1); // Now iterate through every node and // determine if there is a pair with sum // equal to -1 * head1->key1 where head1 is current node while ((head1->right1 != tail1) && (head1->key1 < 0)){ // Now if there is a pair with sum // equal to -1*head1->key1, then return // true else move forward if (isPresentInDLL(head1->right1, tail1, -1*head1->key1)) return true; else head1 = head1->right1; } // Now if we reach here, then // there was no 0 sum triplet return false; } // Shows a utility function to create // a new BST node with key as given num node* newNode(int num1){ node* temp1 = new node(); temp1->key1 = num1; temp1->left1 = temp1->right1 = NULL; return temp1; } //Shows a utility function to insert a given key to BST node* insert(node* root1, int key1){ if (root1 == NULL) return newNode(key1); if (root1->key1 > key1) root1->left1 = insert(root1->left1, key1); else root1->right1 = insert(root1->right1, key1); return root1; } // Driver code int main(){ node* root1 = NULL; root1 = insert(root1, 7); root1 = insert(root1, -15); root1 = insert(root1, 15); root1 = insert(root1, -7); root1 = insert(root1, 14); root1 = insert(root1, 16); root1 = insert(root1, 8); if (isTripletPresent(root1)) cout << "Present"; else cout << "Not Present"; return 0; }

About Online C++ Compiler

Try our Online C++ Compiler (Version GNU GCC v11.3.0) to Edit, Run, and Share your C++ Code directly from your browser. This online development environment provides you the latest version GNU GCC v11.3.0.

How to use Online C++ 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 C++ Compiler: Keyboard Shortcuts

The following are the keyword shortcut of this Online C++ 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 C++ Compiler: Save and Share C++ Code (Project)

Save C++ Project Online

You can save your C++ 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 C++ Project Online

You can use this feature to share your C++ 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 C++ 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 C++ Compiler

There are several benefits of using the Online C++ Compiler to run your C++ 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