Linked Lists

What is a linked list? The Linked Lists is another data structure and is also a common data structure that includes a group of nodes in a sequence that is divided into two parts and each node consists of data…

Groovy Beginners Tutorial

Installation The only prerequisite for installing Groovy is that you must first have a 1.4 or 1.5 or 1.6 JDK installed (available free from ) and the JAVA_HOME environment variable set to the location of your JDK installation.

Compiling and Running Groovy

We have used Groovy in direct mode. In this part, there is another way of using Groovy  is to compile it to Java byte code and running it as regular Java application code within a Java Virtual Machine (JVM). This…