1 / 3

An overview of datastructures in Java

The data structures given by the Java system program are very powerful and perform variety of functions. These details elements include the following client customerinterface and classes:

prachipatil
Download Presentation

An overview of datastructures in Java

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. An overview of datastructures in Java The data structures given by the Java system program are very powerful and perform variety of functions. These details elements include the following client customerinterface and classes: 1. Enumeration 2. BitSet 3. Vector 4. Stack 5. Dictionary 6. Hashtable 7. Properties The Enumeration: The Enumeration client customer interface isn’t itself an understanding framework, but it is very essential within the viewpoint of other details elements. The Enumeration client customer interface explains a strategy to get better following elements from an understanding framework. For example, Enumeration explains a technique known as next Element that is used to get the next look at an understanding framework that contains several elements. This heritage interface has been superceded by Iterator. Although not deprecated, Enumeration is regarded outdated for new rule. However, it is used by several techniques described by the heritage sessions such as Vector and Qualities, is used by several other API sessions, and is currently in extensive use in program rule. To have more details about this client customer interface, analyze The Enumeration. The BitSet The BitSet classification uses several bits or banner ads that can be set and removed individually.

  2. This classification is very useful in the case where you need to keep up with a set of Boolean values; you just spend a bit to each value and set or clear it as appropriate. To have more details about this classification, analyze more about The BitSet. The Vector The Vector classification is identical to an ordinary Java variety, except that it can produce as necessary to assist new elements. Similar to an array, elements of a Vector product may be used via a selection into the vector. The amazing thing about using the Vector classification is that you no problem about developing it to a particular dimension upon creation; it cuts down on and produces immediately when necessary. To have more details about this classification, analyze more about The Vector. The Stack The Collection classification uses a last-in-first-out (LIFO) assortment of elements. You can think of a selection generally as a directly assortment of objects; when you add a new aspect, it gets placed on top of the others. When you take an element off the gathering, it comes off the top. Simply, the last aspect you involved to the gathering is the first one to return off. To have more details about this classification, analyze The Collection. The Dictionary The Terminology classification is a very subjective classification that explains an understanding framework for implementing tricks of concepts. This is useful in the case where you want to be able to obtain availability details via a particular key rather than an integer selection.

  3. Since the Language classification is very subjective, it provides only the framework for a key-mapped details framework rather than a particular performance. To have more details about this classification, analyze The Language. The Hashtable The Hashtable classification provides a way of preparing data based upon on some user-defined key framework. For example, in a cope with list hash table you could shop and kind details based upon on a key such as ZIP concept rather than on a person’s name. The particular goal of key elements with regards to hash systems is very dependent on the make use of the hash table and the details it contains. To have more details about this classification, analyze The Hashtable. The Properties Properties is a subclass of Hashtable. It is used to keep data concepts in which the key is a String and the value is also a Sting. The Features classification is used by many other Java sessions. For example, it is the kind of product came returning by System.getProperties( ) when obtaining environmental concepts. To know more about this go through the data structure tutorial. Read More : Java program structure

More Related