Code Skiller logoCB Logo
Logo LearnLearnLogo PracticePracticeLogo HireHireLogo IDEIDE

What are Homogenous and Heterogenous Data Structures

User image

Published by

sanya sanya

Published at: 21st May, 2023
2.35 mins read

Let's imagine that you are organizing your closet. You have a collection of clothes that you want to store in a particular way.

A homogeneous data structure would be like organizing your clothes by their type. You group all the t-shirts together, all the pants together, all the socks together, and so on. In this case, each group only contains items of the same type. For example, you wouldn't store your socks with your t-shirts. This is a homogenous organization because each group only contains elements of the same data type.

Now, let's imagine that instead of organizing your closet by type, you decide to organize it by color. In this case, each group of items may contain different types of clothes, but they all share the same color. For example, you could have a group of blue items that includes a blue t-shirt, a blue pair of pants, and a blue hat. This is a **heterogeneous **organization because each group may contain elements of different data types.

Example of Homogenous and Heterogenous data structures

  • Homogenous Data Structures Example

    A list of integers. All the elements in the list are integers and have the same data type, making it a homogeneous data structure.

    # Create a homogeneous list of integers my_list = [1, 2, 3, 4, 5]

    In this example, all the elements in the list are integers, and they all have the same data type. The list is homogeneous because it contains only one type of data.

    Another example of a homogeneous data structure in Python could be a string. All the elements in a string are characters, making it a homogeneous data structure.

    # Create a homogeneous string my_string = "Hello, World!"

    In this example, all the elements in the string are characters, and they all have the same data type (string). The string is homogeneous because it contains only one type of data.

  • Heterogeneous Data Structure Example:

    A dictionary with heterogeneous elements. The elements can be of different data types, making it a heterogeneous data structure.

    # Create a dictionary with heterogeneous elements my_dict = {"name": "John", "age": 30, "is_student": True}

    In this example, the keys and values in the dictionary have different data types (string, integer, and boolean), making it a heterogeneous data structure.

    Another example of a heterogeneous data structure in Python could be a list of tuples. Each tuple can have a different number of elements, and the elements can be of different data types. Here's an example:

    # Create a list of tuples with heterogeneous elements my_list = [("John", 30, True), ("Alice", 25, False), ("Bob", 35, True)]

    In this example, each tuple has three elements with different data types (string, integer, and boolean), making it a heterogeneous data structure.

Library

WEB DEVELOPMENT

FAANG QUESTIONS

On this page

. All the elements in the list are integers and have the same data type, making it a homogeneous data structure.