Showing posts with label cute angels. Show all posts
Showing posts with label cute angels. Show all posts

Friday, September 19, 2014

the latest hot images

Bollywood has been blessed with some of the most beautiful faces of the world. These actresses simply set the silver screen on fire with their sex appeal. Whether it is their attractive figure or their sensuous moves, these divas of Bollywood have been the fantasies of a number of men worldwide. Though many stars in Hollywood have posed in sexy lingerie, it is a bold step for Indian actresses. However, some dared to be differed and moved ahead with time. 
Shedding all inhibitions, they bared it all. From films to photo-shoots, a woman in a bikini or lingerie is no more a taboo now in Bollywood. Sunny Leone: Well, how can Sunny Leone be ignored in this list. The adult movie star who is trying her best to get her foot-hold in Bollywood has done it all in her films so far. With her amazingly curvaceous figure and complexion, she can easily put her contemporaries to shame. Sunny sizzles in this red hot lingerie flaunting her perfectly toned body. The red lingerie accentuates Sunny's hour-glass figure
















Wednesday, August 1, 2012

A sister’s guide on which rakhi to send on Raksha Bandhan

Chances are that your boss won’t give you a week’s leave for Raksha Bandhan and your home town isn’t a day’s journey away. Also, chances are that no matter how many times your brother had been a total jerk, tattled to your mother about you or made fun of your dress, glasses, friends or curls, you tend to miss him, especially at this time of the year when the shops at Crawford market are lined with colourful and various types of Rakhis.
You tend to recall all the bygone years when you were actually there to celebrate Raksha Bandhan with him and your family and remember many little anecdotes from the past when, he hadn’t been that annoying and pestering. And you feel like catching a train and going home right at this moment. Well, if you are good at making excuses call in sick and head towards the station. But if you aren’t that great at it and have a sneaky suspicion that your boss might find some uncanny association between your falling sick and Raksha Bandhan, it doesn’t mean you still can’t send him a Rakhi.

Infact, there are a host of websites that offer Rakhis online and will deliver it on your behalf. IndiaPlaza. com, RakhiGiftPortal.com, Jabong.com  are some sites which offer you plethora choices.  Websites such as  makemygitfz and archiesOnline.com are a good choice to pick out a rakhi gift for your brother.
Several courier services such as DTDC and DHL-Blue Dart have also launched various schemes especially for Raksha Bandhan. DTDC have introduced various rakhi boxes to deliver rakhis and Bluedart- DHL has come up with a unique ‘Rakhi Express’  which will allow you to send your Rakhis  in a special Rakhi envelope with a personalized greeting card.
Times of India reported that the postal department of Allahabad region had also organised designer water-proof envelope to send your Rakhis.
Now, that you know some how to send a Rakhi, here are some unique kind of Rakhis to chose from:
1. Batman Rakhis : If your brother is a The Dark Knight Rises fan, here is what, buy him a Batman Rakhi. It available for Rs 25 only.
2. Angry Bird Rakhis: These kind of rakhis are becoming increasingly popular.The price range is between 15-50.
3. Musical rakhis: If your brother likes Bollywood  music there are musical rakhis  which play tunes of popular Hindi songs.
4. Feng Shui rakhis :  Want your Rakhi to bring your brother good luck? Send him a Laughing Buddhas rakhi or a dragons rakhi.
5. Boutique Rakhis: Well, if you can spare a little more you can buy rakhis studded with pearls and crystals studded rakhis from boutiques.

Monday, July 30, 2012

India Against Corruption supporters worry for Anna Hazare's health


NAGPUR: As anti-graft crusader Anna Hazare joined the fast in the national capital, his supporters in Nagpur raised concerns over his health. On Sunday, the biggest topic for discussion at RBI Square protest site was about the Gandhian's jumping into the thick of things, and the toll this current indefinite fast would take on his health.


City coordinator for IAC Ajay Sanghi said, "We were always worried about Anna's health and in fact even Arvind Kejriwal yesterday expressed a deep concern. Kejriwal said that after independence we lost Mahatma Gandhi and it took decades before Anna came on the scene. Now after Anna we do not know how long it will take to have a national icon."


The last agitation by Anna in December had to be cut short after his health took a turn for the worse. Also the dwindling crowd support for the agitation is said to have played a major role in IAC's decision to pull the plug back then. This time Arvind Kejriwal led from the front by sitting on an indefinite fast giving some breathing space to Anna. But as TOI had reported earlier the Gandhian was forced to join the fray after the government did not heed to his demands.

Even with Anna leading the agitation, now crowd support is still not reflecting at the ground level. Though there was a decent crowd turnout on Sunday, IAC Nagpur has decided to innovate in trying to spread Anna's message across. About a thousands posters will be put at tea stalls across the city so that when people come there, they will come to know about Anna's plans to tackle corruption. Sanghi said, "The poster will have details on how Anna will deal with graft, about our current problems in the country etc. The basic idea is to get people talking about the issue for a few minutes. We are also urging them to spare some time and join us at RBI Square and give support in writing."

IAC youth members have also planned to visit colleges, hostels and other educational institutes and talk to them about giving support to Anna's cause.

Friendship Day: what it is about

New Delhi: Friendship Day celebrations are held on different dates in different countries of the world. The first World Friendship Day was proposed on 30 July 1958 in Paraguay. On 27 April, 2011, the General Assembly of the United Nations declared 30 July as official International Friendship Day. However, in India, Friendship Day is celebrated on the first Sunday of August. 



Friendship Day was originally proposed by Joyce Hall, the founder of Hallmark cards in 1919, intended to be the first Sunday of August and a day when people celebrated their friendships by sending cards. The first Sunday in August was chosen as the centre of the largest lull between holiday celebrations but it faced consumer resistance, given that it was rather too obviously a commercial gimmick to promote greetings cards

Friendship Day: what it is about

Monday, July 16, 2012

LINK LIST IN DATA STRUCTURE

LINK LIST IN DATA STRUCTURE



Linked list is the most basic form of a data structure. A linked list is more or less similar to an array in that it can hold a list of values. But the similarity ceases here. The major difference between a linked list and array is that an array can hold values belonging to the same data type only whereas there is no such restriction on a linked list. For example, if an array is declared with type as int in C language, it can hold only integer values. Coming to a linked list, as it is a data structure, there is seldom any type associated with it. Apart from the above difference, there is one more difference that makes linked lists more versatile. It is not only possible to create linear linked lists but also circular linked lists i.e., the last element of the list can be made to point to the first. Another difference is that the memory to be allocated to a linked list can be specified dynamically i.e., we need not mention the number of elements in the linked list at the time of compilation. This facility may also be available for arrays in some languages but is not widely used. The most basic form of a linked list is created by creating a structure with one data element and a pointer to point to the next element in the data structure. The pointer of the last element is intialised to null to avoid it to point to some junk value if its a linear linked list. On the contrary, if it is a circular linked list, the pointer of the last element is made to point to the first element in the list. The above type of list allows traversing in only one direction. If we want bi-directional traversal, then we can create a structure with two pointers where one pointer is made to point to the previous element and the other point to the next element in the list. Modifications are made as stated above for a simple linked list to convert this to a circular list. Accordingly the above two types of lists are sometimes called single linked list and double linked list. Instead of using a single data element, we can use any number of data elements with several different data types within the structure. We may also use arrays as data elements of the linked list. An element in a linked list is often called a node. It is possible to add/delete nodes from any position within the linked list. According to the operation selected, the pointers need to be updated appropriately. Giving a C program to create a linked list would make this response too big as the programs to create linked lists often run more than hundred lines. Nevertheless, they are simple and can be easily understood once the concept is known. For further information and programs, you can refer to standard text books like Data

The link list in computer data structure program consists of sequence of data records with reference data field in each record in order to link each data record to the subsequent data field.
The link list grows when data is added and shrinks when data is deleted in the list. Hence link list is known as dynamic data structure in conjunction with dynamic memory management techniques.
Link list in data structure have flexibility in adding, deleting or rearranging data at run time permitting additional memory space and releasing unused memory space in order to optimum use of storage space.



Linked List is a complex dynamic data structure which contains of nodes having two parts data and next. Next is just a pointer pointing to the next node in the list. If the list is empty next just point ot NULL. There are different types of linked list namely Singly, Doubly and Circular. Singly Linked List is the list which can be traversed in one direction only and whose last last node of the list points to NULL. Doubly Linked list has two pointers PREV and NEXT.This list can be traversed in both the directions. PREV of the first node of doubly linked list always points to NULL and also the NEXT of last node points to NULL. Circular Linked List is the one whose last node points to the first instead of to the NULL. The different operations that can be performed on list are. INSERT:- We can dynamically insert any node at any desired position into the list. DELETE:- Similar to insertion, deletion can also be accomplished dynamically. TRAVERSE:- Traversing is just trvelling through the list visiting each node. As each thing has pros and cons, the only drawback of linked list is randomly accessing of element which can be achieved through array index in array but not in linked list.The good thing about linked list is its run­time expand­abil­ity which proves its flexibility.

Linked List is a Data storage mechanism in which list of data is stored in linear order. Linked list contains collection of nodes, each node contains data part and address part in which the next node address is stored. Each node in link list contains address of next node except the last node because last node contains the NULL pointer which indicates the end of list. Linked list has following types: 1. Singly Link List 2. Doubly Link List 3. Circular Link List
Link list data structure is created using the Structure of C as given below: struct list { int data; struct list *next; }; The dynamic node is created using malloc() and calloc() functions available in C language and new operator is used in case of C++. The following Operation can be performed on link list: 1.Insert element 2.Delete Element 3.Find Sum of All elements 4.Count number of node in list 5.Search any element 6.Reverse the list 7.Make copy of list 8.Merger two list 9.Update element Link list is widely used by various real life applications.

Linked List is basically a linear list of Elements which are linked to one another with some means of links, and hence it is known as linked list.

Each element in the list is known as Node.
And each node in the have at least two parts:-
1. Data Part
2. Link part

Data Part:- This part of every node of the list contains the information stored in that node of the list

Link Part:- This part of the node contains the memory address of the next node in the linked list.

For Example:Implementation of linked list node in C Language

Struct Node
{
int RollNo;//Data Part
int Marks;//Data Part
struct Node *link;//Address of the next Node
}; 

Note that the linked list contains a special node called the START which contains the address of the first node in the linked list.

if START == NULL
then it means that the linked list is Empty.


Linked List is a structure in data structures having a number of nodes that stores information as well as the pointer field that points to the next record to be processed. The pointer is basically a address that is used to access the next information part within a linked list. The last pointer field is filled using NULL character means there is no way further. So, it indicates the end of the linked list. Various algorithms are there to insert or delete nodes in a linked list.
It may be:

Insert element at the starting of linked list,
Insert element at the end of linked list,
Insert element at the middle of linked list,
Delete element at the starting of linked list,
Delete element at the end of linked list,
Delete element at the middle of linked list,


linked list a data structure which stores data in the form of nodes.It does not require linear memory as arrays. Each node contains a data part and a pointer part(a pointer to the next data in the list)

link or node is object of a class.there are so many types of linked list 1) single linked list
2)doubly linked list 
3)circular linked list.

single linked list:
here links contains pointer to first data and last data in the list.As said earlier a pointer to the next data.
example of a linked list:


class node{// all nodes will be the objects of this class
public int data;
public link next_node;//a pointer to next data
}
public node(int data){
this.data=data;
}//end of constructor
public void showdata(){
System.out.println("data= "+data);
}
}//end of class node

After defining class for each node we need to define a class for link list. Link list contains a pointer to the first node in the list,Which should be initialized to null in the beginning. All the operations to be performed on the link list is defined as functions in this class. For example insert first,Delete,insert search etc.



class linkedlist{
private node first_node;//pointer to the first node is defined
public linkedlist(){
first_node=null;
}
public void add_DAta(int data1){
//create newnode in the memory and store data
node newnode= new node(data1);
//initially first data is null 
//set the current first as the next node of the new node
newnode.next_node=first;
//set newnode as the first node
first_node=newnode;
}
}//end of class


Doubly link list:
This allows us to traverse backward and forward through the list . Here this a pointer to previous node i.e the class node in our example will have one more pointer to the previous node.
There is pointer to the last node in the list i.e class linkedlist contains pointer to last node in the list.
Circular linklist:
As the name indicate we can traversethe list i circular fashion that from first node to last node and back to firat node in the same direction. Last node will have a pointer to first node.

Saturday, November 19, 2011

cute look girls in chennai





























Friday, November 18, 2011

hot and romantic girls






















 
Design by Free WordPress Themes | Bloggerized by Lasantha - Premium Blogger Themes | Justin Bieber, Gold Price in India