My Notes - C, C++, Java...
May 6, 2017
Ubuntu: Add new screen resolutions
›
Many times, the default resolution provided by your new Ubuntu installation is not compact enough. In order to add a new resolution if not...
3 comments:
Oct 2, 2013
Automatically registering the jdbc driver
›
A jdbc driver can be registered with the Driver Manager in four ways. 1. Automatic Registration 2. Using Class.forName("DRIVER_NAME...
Sep 2, 2013
Find depth of the deepest odd level leaf node in a binary tree
›
Write a program to find maximum height of the odd level leaf node of a binary tree. The problem has been picked up from GeeksforGeeks A qu...
1 comment:
Aug 29, 2013
Find max height of a binary tree
›
Program for finding maximum depth or height of a binary tree /** * find height of the tree recursively */ public static int m...
Aug 25, 2013
Creating a binary search tree using iterative approach in Java
›
Program for creating a binary search tree using iterative method private void addNode(Node node, int n) { while (node != null) { ...
›
Home
View web version