zParacha.com
Effective Programming Tips
    • Home
    • Programming
    • Java
    • Algorithms
    • Javascript
    • About
    • Privacy Policy

    Insertion Sort Algorithm In Java

    Insertion sort is a simple algorithm. Insertion sort logic works as follows: To insert an element in an already existing set, we make room for the new item by moving larger items one position to the right. Then insert the new item at the newly available position. The algorithm most often used to sort cards in […]

    Selection Sort Algorithm in Java

    Selection sort is one of the simplest sorting algorithms. It is easy to implement but it is not very efficient. The algorithm divides the input list into two parts: the sublist of items already sorted, which is built up from left to right at the front (left) of the list, and the sublist of items […]

    How to calculate the height of a Non-Binary Tree

    Computing the height of a tree in Computer Science is very common. Most of the examples and online discussions talk about computing the height of a Binary Tree. The example method I am sharing can be used to compute the height of any tree. So even if you have a non-binary tree, you can use […]

    Easiest way to calculate elapsed time in Java

    Quite often in our day-to-day programming, we need to compute how long a specific portion of the code takes to complete. For e.g; you might want to check how long a method takes to complete.  In Java, the simplest way to accomplish this is to use System.nanoTime() method. The following example shows how you can […]

    Java Regular Expression to Validate Social Security Number (SSN)

    Here is a utility method to check if a given String is a valid Social Security number using Java Regular Expression. 

    Java Regular Expression to check if a String is a numeric value

    Here is another method from my String utility class. This method uses a regular expression to check if a String is a numeric value. Look at the code, then read through the explanation that follows

    How to delete Workspace from Eclipse Launcher Selection

    Launch Eclipse Click on Recent Workspaces Eclipse will list all previously used workspaces Right click on the workspace name that you want to remove Click on Remove from Launcher Selection text. This will remove the workspace from the drop-down list

    How to generate random alpha numeric String in Java

    Following code is an example of generating a random alpha-numeric string using Java Random class. It is designed to generate random String of varying length based on the input parameter.

    Java Scanner’s unexpected behavior following nextInt or nextDouble call

    Scanner is a utility class that provides methods to read command-line input. It is a very useful class, but you need to be aware of its unexpected behavior while reading numeric inputs. Consider the following example.

    How to compare Java Strings correctly

    One of the most common bugs I’ve seen in Java programs is the use of the == operator to compare two String objects. Most of the time the result may be accurate but it is not always guaranteed.We need to understand the difference between == and the Object.equals method.

    1 2 3 4 5 >»

    Recent Posts

    • Insertion Sort Algorithm In Java
    • Selection Sort Algorithm in Java
    • How to calculate the height of a Non-Binary Tree
    • Easiest way to calculate elapsed time in Java
    • Java Regular Expression to Validate Social Security Number (SSN)

    Categories

    • Ajax
    • Algorithms
    • Best Sites
    • Best Software
    • Blogging
    • Cricket
    • CSS
    • Featured
    • Images
    • Java
    • Javascript
    • Most Popular Posts
    • Offbeat
    • Pakistan
    • Programming
    • Spring
    • Top Stories
    • Twitter
    • Uncategorized
    • Web Development

    Tags

    Alexa Array Blogging cascading_style_sheet Cricket CSS Eclipse Entrecard iBlogCup India vs Pak India vs Pakistan Java Java IDE Javascript Pak vs India Phone number plugin problogger Programming Language RegEx Regular Expression shorthand properties Simpson Sort Sorted Vector Sort numbers sort numeric arrays Spring SSN String string in switch stylesheet design substring switch text-shadow text replacement Thunderbird TIOBE Tip TOMY Co tools Twitter web development tools WordPress workspace

    Back to Top

    © zParacha.com 2025
    Powered by WordPress • Themify WordPress Themes