кодесурса
«C #

Упражнения C # Sharp: определить, является ли матрица разреженной матрицей

script1adsense2code
script1adsense3code

C # Sharp Array: Упражнение-29 с решением

Напишите программу на C # Sharp, чтобы принять матрицу и определить, является ли она разреженной матрицей.

Пример решения : -

C # острый код:

/*A sparse martix is matrix which  has more zero elements than nonzero elements */
using System;  
public class Exercise29  
{  
    public static void Main()
{
      	int[,] arr1 = new int[10,10];
	    int i,j,r,c;
	    int ctr=0;
	
     Console.Write("\n\nDetermine whether a matrix is a sparse matrix :\n ");
     Console.Write("----------------------------------------------------\n");	
     Console.Write("Input the number of rows of the matrix : ");
	 r = Convert.ToInt32(Console.ReadLine());
     Console.Write("Input the number of columns of the matrix : ");
	 c = Convert.ToInt32(Console.ReadLine());
	 Console.Write("Input elements in the first matrix :\n");
       for(i=0;i<r;i++)
        {
            for(j=0;j<c;j++)
            {
	           Console.Write("element - [{0}],[{1}] : ",i,j);
			   arr1[i,j] = Convert.ToInt32(Console.ReadLine());
			if (arr1[i,j]==0)
			{
				++ctr;
			}
            }
        }  
	if (ctr>((r*c)/2))
	{
		Console.Write ("The given matrix is sparse matrix. \n");
	}
	else
		Console.Write ("The given matrix is not a sparse matrix.\n");
	Console.Write ("There are {0} number of zeros in the matrix.\n\n",ctr);
	
	}
}

Пример вывода:

 Определите, является ли матрица разреженной матрицей:                                                               
 -------------------------------------------------- -                                                         
Введите количество строк матрицы: 2                                                                    
Введите количество столбцов матрицы: 2                                                                 
Входные элементы в первой матрице:                                                                          
элемент - [0], [0]: 0                                                                                         
элемент - [0], [1]: 1                                                                                         
элемент - [1], [0]: 0                                                                                         
элемент - [1], [1]: 0                                                                                         
Данная матрица является разреженной матрицей.                                                                            
В матрице 3 числа нулей.

Блок - схема:

«Блок-схема:

Редактор кода C # Sharp:

Внесите свой код и комментарии через Disqus.

Предыдущий: Напишите программу на C # Sharp для вычисления определителя матрицы 3 x 3.
Далее: Напишите программу на C # Sharp, чтобы принять две матрицы и проверить, равны ли они.

Каков уровень сложности этого упражнения?

Новый контент: Composer: менеджер зависимостей для PHP , R программирования


script1adsense4code
script1adsense5code
disqus2code
script1adsense6code
script1adsense7code
script1adsense8code
buysellads2code