Posts

Merging Two Sorted Arrays in Sorted Order

Today with heavy rainy. I fully wet. and come to the lab and start to code. What I did.  Sorting two arrays in independently and I merge them in sorted order. How am I do. see below...  Your reiew is our success. Think how we modify this in more.   

Insertion Sort

Image
Insertion Sort is a simple sorting algorithm that build final sorted element in the array. The insertion sort give more efficient way and give more advantage than other sort like quick sort, merge sort and heap sort.  It's specialties are : Simple More efficient ( Time Complexity O(n 2 ) ) Only required constant amount of memory requirement. ( O(1) ) Algorithm ------------------------------------------------------------------------------------------------------------ Insertion_Sort(array){      for i=1 to n-1{           element = array[i];           j=i;           while(j>0 and array[j-1] > element ){                  array[j] = array[j-1];               ...

Data Structures : Stack

Image
Stack is the data structure that can be logically through as Linear Data Structure. The basic implementation is called as LIFO ( Last In First Out ) way.  

Session 01 : Data Mining and Machine Learning - Introduction

Image
Introduction The Data is the most important thing in any field, whether is profitable or non- profitable field. The amount of data in the world, in our lives seems to go on and on increasing. The fact of the statistic says the amount of the data stored in the common world database is increasing doubles every 20 months. It is hard to justify the data in the sense of quantities.

Session 01 : Setting Up Android SDK with Eclipse

Image
Are you wish to learn android? Keep on touch. We are guide you to learn from the very basic level very short of reading.  First you need some knowladge about programming language of Java. Hope you were configure java and make your PC as JVM(Java Virtual Machine) To Setting up the Android environment with eclipse. You need to download eclipse for your specific machine. Now Shall we going to start to setup..... Guys, follow the steps. Start Eclipse, then select Help --> Install New Software Click Add, in the top-right Corner In the Add Repository dialog enter "ADT Plugin" for Name & the following URL for Location https://dl-ssl.google.com/android/eclipse/ Click OK In the available software dialog check the Developer Tools and click, Next. Read the licence and accept it. That it. Finish.   Now. You can Start your development.   Let's dig to start in few days.

Django : Installation

Django is the web programming framework in python. It allow python programmers to show their expertise in web. Python is the powerful language we know. On this tutorial I have going to show you how to install Django in your machine. If you are a Linux user this tutorial is more comfortable for you. Open your terminal and check you already have python. if not install python using the command sudo apt-get install python to install python on your Linux environment. Install Apache Server and mod-wsgi Getting your database server is running. Django support for PostgreSQL , MySQL , Oracle and SQLite . Then you need pip in your python environment. to install pip sudo apt-get install python-pip or download the file get-pip.py then run this file with root access. Then if you have install pip install Django using the pip command sudo pip install Django   That's it check your Django is install properly using following python snap import sys ; sys . path = sys . pat...

Maven Installation

Image
Today, I have install Maven on my laptop. I just want to share with you... Lets' quick start. follow these steps. First you need to download the maven binary from the official maven site  http://maven.apache.org/download.cgi   Then extract the binary zip  Now, set your environmental variable for JAVA_HOME get the path of bin in your extract maven folder and set it into the environmental variable path Now, every thing is okay. Open your command prompt  enter mvn --version Done. that's it. Enjoy with maven