Масив е колекция от линейни структури от данни, които съдържат всички елементи от един и същ тип данни в непрекъснато пространство на паметта. Това е като контейнер, който съдържа определен брой елементи, които имат същия тип данни. Индексът на масива започва от 0 и следователно програмистът може лесно да получи позицията на всеки елемент и да извърши различни операции върху масива. В този раздел ще научим за 2D (двуизмерни) масиви в Python.
Двуизмерен масив (2D масив)
2D масив е масив от масиви, които могат да бъдат представени в матрична форма като редове и колони. В този масив позицията на елементите от данни се определя с два индекса вместо с един индекс.
Синтаксис
анотации в пролетното зареждане
Array_name = [rows][columns] # declaration of 2D array Arr-name = [ [m1, m2, m3, … . m<sub>n</sub>], [n1, n2, n3, … .. n<sub>n</sub>] ]
Където м е редът и н е колоната на таблицата.
Достъп до двумерен масив
в Python , можем да имаме достъп до елементи от двумерен масив, използвайки два индекса. Първият индекс се отнася до индексирането на списъка, а вторият индекс се отнася до позицията на елементите. Ако дефинираме само един индекс с име на масив, той връща всички елементи на 2-dimensional, съхранени в масива.
Нека създадем проста програма за разбиране 2D (двуизмерни) масиви в Python.
2dSimple.py
Student_dt = [ [72, 85, 87, 90, 69], [80, 87, 65, 89, 85], [96, 91, 70, 78, 97], [90, 93, 91, 90, 94], [57, 89, 82, 69, 60] ] #print(student_dt[]) print(Student_dt[1]) # print all elements of index 1 print(Student_dt[0]) # print all elements of index 0 print(Student_dt[2]) # print all elements of index 2 print(Student_dt[3][4]) # it defines the 3rd index and 4 position of the data element.
Изход:
В горния пример предадохме 1, 0 и 2 като параметри в 2D масив, който отпечатва целия ред на дефинирания индекс. И ние също сме преминали student_dt[3][4] което представлява 3rdиндекс и 4thпозиция на двумерен масив от елементи за отпечатване на определен елемент.
Обхождане на елемента в 2D (двуизмерен)
Program.py
# write a program to traverse every element of the two-dimensional array in Python. Student_dt = [ [72, 85, 87, 90, 69], [80, 87, 65, 89, 85], [96, 91, 70, 78, 97], [90, 93, 91, 90, 94], [57, 89, 82, 69, 60] ] # Use for loop to print the entire elements of the two dimensional array. for x in Student_dt: # outer loop for i in x: # inner loop print(i, end = ' ') # print the elements print()
Изход:
tcp ip модел
Вмъкване на елементи в 2D (двуизмерен) масив
Можем да вмъкнем елементи в 2 D масив, като използваме вмъкване () функция, която указва индексния номер на елемента и местоположението за вмъкване.
Вмъкнете.py
# Write a program to insert the element into the 2D (two dimensional) array of Python. from array import * # import all package related to the array. arr1 = [[1, 2, 3, 4], [8, 9, 10, 12]] # initialize the array elements. print('Before inserting the array elements: ') print(arr1) # print the arr1 elements. # Use the insert() function to insert the element that contains two parameters. arr1.insert(1, [5, 6, 7, 8]) # first parameter defines the index no., and second parameter defines the elements print('After inserting the array elements ') for i in arr1: # Outer loop for j in i: # inner loop print(j, end = ' ') # print inserted elements. print()
Изход:
Актуализирайте елементи в 2-D (двуизмерен) масив
В 2D масив съществуващата стойност на масива може да бъде актуализирана с нова стойност. В този метод можем да променим конкретната стойност, както и целия индекс на масива. Нека разберем с пример за 2D масив, както е показано по-долу.
Създайте програма за актуализиране на съществуващата стойност на 2D масив в Python.
Update.py
from array import * # import all package related to the array. arr1 = [[1, 2, 3, 4], [8, 9, 10, 12]] # initialize the array elements. print('Before inserting the array elements: ') print(arr1) # print the arr1 elements. arr1[0] = [2, 2, 3, 3] # update the value of the index 0 arr1[1][2] = 99 # define the index [1] and position [2] of the array element to update the value. print('After inserting the array elements ') for i in arr1: # Outer loop for j in i: # inner loop print(j, end = ' ') # print inserted elements. print()
Изход:
Изтриване на стойности от 2D (двуизмерен) масив в Python
В 2-D масив можем да премахнем конкретния елемент или целия индекс на масива, като използваме от() функция в Python. Нека разберем пример за изтриване на елемент.
Delete.py
from array import * # import all package related to the array. arr1 = [[1, 2, 3, 4], [8, 9, 10, 12]] # initialize the array elements. print('Before Deleting the array elements: ') print(arr1) # print the arr1 elements. del(arr1[0][2]) # delete the particular element of the array. del(arr1[1]) # delete the index 1 of the 2-D array. print('After Deleting the array elements ') for i in arr1: # Outer loop for j in i: # inner loop print(j, end = ' ') # print inserted elements. print()
Изход:
Размер на 2D масив
А само () се използва за получаване на дължината на двуизмерен масив. С други думи, можем да кажем, че a само () определя общия индекс, наличен в двумерни масиви.
сортиран arraylist java
Нека разберем функцията len(), за да получим размера на двуизмерен масив в Python.
Размер.py
array_size = [[1, 3, 2],[2,5,7,9], [2,4,5,6]] # It has 3 index print('The size of two dimensional array is : ') print(len(array_size)) # it returns 3 array_def = [[1, 3, 2], [2, 4, 5, 6]] # It has 2 index print('The size of two dimensional array is : ') print(len(array_def)) # it returns 2
Изход:
Напишете програма за отпечатване на сумата от двумерните масиви в Python.
Matrix.py
def two_d_matrix(m, n): # define the function Outp = [] # initially output matrix is empty for i in range(m): # iterate to the end of rows row = [] for j in range(n): # j iterate to the end of column num = int(input(f 'Enter the matrix [{0}][{j}]')) row.append(num) # add the user element to the end of the row Outp.append(row) # append the row to the output matrix return Outp def sum(A, B): # define sum() function to add the matrix. output = [] # initially, it is empty. print('Sum of the matrix is :') for i in range(len(A)): # no. of rows row = [] for j in range(len(A[0])): # no. of columns row.append(A[i][j] + B[i][j]) # add matrix A and B output.append(row) return output # return the sum of both matrix m = int(input('Enter the value of m or Row ')) # take the rows n = int(input('Enter the value of n or columns ')) # take the columns print('Enter the First matrix ') # print the first matrix A = two_d_matrix(m, n) # call the matrix function print('display the first (A) matrix') print(A) # print the matrix print('Enter the Second (B) matrix ') B = two_d_matrix(m, n) # call the matrix function print('display the Second (B) matrix') print(B) # print the B matrix s= sum(A, B) # call the sum function print(s) # print the sum of A and B matrix.
Изход: