background preloader

C++

Facebook Twitter

How To Change The Java Version In Linux? This post is regarding how to change java version if multiple java versions are installed?

How To Change The Java Version In Linux?

Check what are the java versions are installed on your system #java -version Example output OpenJDK Runtime Environment (build 1.6.0-b09) ADDITION (INSERTION) ALGORITHM (Java, C++) Insertion into a singly-linked list has two special cases.

ADDITION (INSERTION) ALGORITHM (Java, C++)

It's insertion a new node before the head (to the very beginning of the list) and after the tail (to the very end of the list). In any other case, new node is inserted in the middle of the list and so, has a predecessor and successor in the list. There is a description of all these cases below. Cplusplus.com - The C++ Resources Network.