concepts Flashcards

1
Q

What is the difference between HashMap and TreeMap in Java?

A

HashMap:
A HashMap stores key-value pairs and uses a hash table for storage. It allows null values and keys.
The order of the elements is not guaranteed; it can change over time.
It provides constant-time performance (O(1)) for basic operations like get and put, assuming the hash function disperses elements properly among the buckets.
TreeMap:
A TreeMap stores key-value pairs in a red-black tree structure, which is a self-balancing binary search tree.
The elements are sorted according to their natural ordering or by a specified comparator.
It provides log-time performance (O(log n)) for basic operations like get and put.

Use Cases:
HashMap: Useful when fast access, insertion, and deletion operations are required without caring about the order of elements. Examples include caching, and mapping database results.
TreeMap: Useful when sorted order of keys is required. Examples include implementing navigation systems, or maintaining a sorted list of items.

Edge Cases:
HashMap: Handles null keys and values, but it’s not synchronized, so it should be synchronized externally in multithreaded environments.
TreeMap: Does not allow null keys (throws NullPointerException). It can have null values.

Conclusion: HashMap is best for fast, unordered access and manipulation of data, while TreeMap is suitable when a sorted order of elements is required, with both offering different performance characteristics and use cases.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Explain the differences between List, Set, and Map.

A

List:
An ordered collection that allows duplicate elements.
Elements can be accessed by their index.
Set:
An unordered collection that does not allow duplicate elements.
No guaranteed order of elements.
Map:
A collection that maps keys to values.
No duplicate keys are allowed, but duplicate values are permitted.

Use Cases:
List: Used when the order of elements is important, such as in sequences or when accessing elements by index.
Set: Used when uniqueness of elements is required, such as in collections of unique items.
Map: Used for key-value association, such as dictionaries, caches, or configurations.

Edge Cases:
List: Allows null elements.
Set: Some implementations (e.g., TreeSet) do not allow null elements.
Map: Different implementations handle null keys and values differently.

Conclusion: List, Set, and Map serve different purposes in the Java Collections Framework, providing flexibility to choose the appropriate data structure based on the requirements for ordering, uniqueness, and key-value associations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the main implementations of the List interface?

A

The List interface has several implementations in Java, each with different characteristics and use cases.
The most commonly used implementations are ArrayList, LinkedList, and Vector.

Use Cases:
ArrayList: Best for frequent access by index and when you know the size in advance.
LinkedList: Best for frequent insertion and deletion operations.
Vector: Synchronized version of ArrayList, used in legacy codebases or when thread safety is required.

Edge Cases:
ArrayList: Performance can degrade if frequent insertions or deletions are required in the middle of the list.
LinkedList: Access time can be slower compared to ArrayList due to its sequential nature.
Vector: Generally slower than ArrayList due to synchronization overhead.

Conclusion: The main implementations of the List interface offer different performance characteristics and use cases, allowing developers to choose the best fit based on their specific needs for accessing, inserting, and deleting elements.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the difference between ArrayList and LinkedList?

A

ArrayList:
A resizable array implementation of the List interface.
Provides fast random access to elements using indices.
Insertion and deletion operations can be slow, especially in the middle of the list, due to the need to shift elements.
LinkedList:
A doubly-linked list implementation of the List and Deque interfaces.
Provides fast insertion and deletion operations, particularly at the beginning and end of the list.
Accessing elements by index is slower compared to ArrayList because it requires traversing the list.

Use Cases:
ArrayList: Suitable for applications where frequent access to elements by index is required.
LinkedList: Suitable for applications where frequent insertion and deletion of elements are needed, particularly in the middle or at the ends.

Edge Cases:
ArrayList: Not efficient for large lists with frequent insertions and deletions.
LinkedList: Not efficient for random access to elements.

Conclusion: ArrayList and LinkedList have distinct performance characteristics, with ArrayList being more efficient for random access and LinkedList being more efficient for insertions and deletions. The choice between them depends on the specific needs of the application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How does a HashMap work?

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly