answersLogoWhite

0

atoms, it is a pure substance.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Why you use doubly link list?

In a doubly linked list, you can iterate backwards as easily as forwards, as each element contains links to both the prior and the following element. You can also insert or delete an element without needing to iterate and remember the prior element's link. This comes at a cost. You are adding storage to each element for the second link, and you are adding processing overhead to the insert and delete operation. You have to determine the tradeoff.


Define what an element key contains?

An element key shows you the name of the element, its atomic number, its symbol, and its average atomic mass.


An element has 3 ion contains 28 electrons mass of 70 name element and list number of particles protons neutrons electrons?

Gallium


What element contains nitrogen?

Nitrogen is an element, so no other element contains nitrogen.


What element contains more than one element and has metallic properties?

No element contains more than one element.


How do you compare items in a linked list?

You compare items in a linked list by searching for them. Iterate through the list, comparing elements with the search key. If you encounter end-of-list, then the key is not found, otherwise you have found the element desired. Note that this is a half linear search. Statistically, if an element is to be found, it will be found at the halfway point, assuming uniformly random distribution of data. In the worst case, if the element is not found, it will always take a full search to prove that. You could keep the linked list in order, by inserting each element before the element that has higher key value. This would reduce search time to half, because searching would stop with the element with higher key value. Searching is not a very efficient use of a linked-list. It would be better to use some kind of ordered list, perhaps a dynamic array with binary search, or a balanced binary tree, which has similar search performance but one with the most cost to design and implement. Linked-lists are better for keeping elements in the order they were encountered or inserted, such as processing tokens in a compiler. Sorry, but every solution has its tradeoffs.


List ways that element can get their names?

list ways that element can get their names


What element contains 16 protons?

what element contains 16 protons? what element contains 10 protons?


How do you compare elements of a linked list. e.g an element should not be input when the same value already exists..?

In a linked list, if you want to prevent elements with the same key from being inserted twice, then you need to search the list prior to insert for that key. Iterate through the list, comparing elements with the element being inserted. If you encounter end-of-list, then insert the new element, otherwise throw whatever exception or indicate whatever error desired. Note that this is a full linear search. Statistically, if an element is to be found, it will be found at the halfway point, assuming uniformly random distribution of data. In the worst case, if the element is not found, it will always take a full search to prove that. This is not a very efficient use of a linked-list. It would be better to use some kind of ordered list, perhaps a dynamic array with binary search, or a balanced binary tree, which has similar search performance but one with the most cost to design and implement. You could keep the linked list in order, by inserting each element before the element that has higher key value. This would reduce search time to half, but that is still proportional to list size, not log 2 of list size like binary search is. Sorry, every answer has its tradeoffs.


What do you call a substance that only contains one kind of atom?

A substance that only contains one kind of atom is called an element.


What element contains 14 protons?

The element that contains 14 protons in its atoms has the atomic number 14. On the Periodic Table, this element is silicon, Si.


What is link list and type of link list?

A linked list is a set of elements, usually structures, where each element contains a pointer or index to the "next" element, along with the data represented by the element.Often, the elements are allocated from the heap. Sometimes, a fixed number of elements is contained in an array. In the first case, pointers are used. In the second case, indices are used.Types of linked lists are ... In an array implementation, read pointer as index.Singly linked - there is a head pointer, and one next pointer per element. The last element's pointer is null. This type of list can be traversed in only one direction.Doubly linked - there is a head pointer, and each element contains two pointers, one to the previous element and one to the next element. This type of list can be traversed in two directions, making insertion and deletion a bit easier, at the cost of extra memory.Circularly linked - the same as Singly or Doubly linked, except that the last element's pointer points back to the first element's pointer. These types of lists are often used as queues.