Explain traversing, inserting, deleting, searching, and sorting operations with a programming example?
Question: Explain traversing, inserting, deleting, searching, and sorting operations with a programming example?
Traversing, inserting, deleting, searching, and sorting are common operations that can be performed on data structures such as arrays and lists. Here is an example in Python that demonstrates these operations on a list:
my_list = [5, 3, 1, 4, 2]
# Traversing
for item in my_list:
print(item)
# Inserting
my_list.insert(2, 6)
print(my_list)
# Deleting
my_list.remove(3)
print(my_list)
# Searching
index = my_list.index(4)
print(index)
# Sorting
my_list.sort()
print(my_list)
In this example, we first create a list my_list with some elements. Then we traverse the list using a for loop and print each element. Next, we insert the element 6 at index 2 using the insert() method. Then we remove the element 3 from the list using the remove() method. After that, we search for the element 4 in the list using the index() method and print its index. Finally, we sort the list in ascending order using the sort() method.
0 Komentar
Post a Comment