answersLogoWhite

0

What is definition of sink node?

Updated: 12/22/2022
User Avatar

Wiki User

13y ago

Best Answer

It is similar to head node which gather, control data collected by other sensor node.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is definition of sink node?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is sink node source or destination?

sink node is source


What is difference between sink node and base station in WSN?

A WSN typically consists of a sink node sometimes referred to as a Base Station


What is the node in math?

The definition of a node as it is used in math is that a node is a singular point of a curve. It is also defined as vertex in a graph.


Does each node in a doubly linked list contain a link to the previous as well as the next node?

Yes, each node in a doubly linked list contain a link to the previous as well as the next node. That is the definition of the doubly linked list.


What is the definition of a subsidence?

The definition of subsidence is the decreasing or caving in of an area of land. A real world example of a subsidence would be a sink hole, having the land sink in gradually.


If you have low density will you sink?

You probably won't, but it depends what your definition of "low density" is. The denser the object the more likely it is to sink.


What is the definition of a list in programming?

A list is data type which implements a linear data sequence container object with elements that are allocated non-contiguously. To navigate a list, we use a node class. A node refers to an element but also refers to the next and previous nodes in the sequence. A simple node may be defined as follows: template<typename T> struct node { T* data; // link to an element (of some type T) node* next; // link to next node node* prev; // link to previous node };


WHO definition of Significant Lymphadenopathy?

swelling or enlargement of a particular lymph node, draining that particular organ or area.


Write an iterative function to search an element in a binary search tree?

_node* search (_node* head, _key key) { _node* node; for (node=head; node != NULL;;) { if (key == node->key) return node; else if (key < node.>key) node = node->left; else node = node->right; } return node; }


How to Print data of all nodes of linked list?

for (node=head; node!=null; node=node->next) printnode(node);


How to find the mirror image of a binary tree?

Refer to http://cslibrary.stanford.edu/110/BinaryTrees.html void mirror(struct node* node) { if (node==NULL) { return; } else { struct node* temp; // do the subtrees mirror(node->left); mirror(node->right); // swap the pointers in this node temp = node->left; node->left = node->right; node->right = temp; } }


Can we use doubly linked list as a circular linked list?

Yes. The tail node's next node is the head node, while the head node's previous node is the tail node.