Многопоточная обработка двумерного массива! - C#

Узнай цену своей работы

Формулировка задачи:

Это многопоточная обработка одномерного массива. Помогите исправить из одномерного массива в двумерный, буду очень признателен.
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. namespace MyProgram
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Random rnd = new Random();
  13. Vector v = new Vector(100, 6, rnd);
  14. v.Start();
  15. Console.ReadKey();
  16. }
  17. }
  18. class Vector
  19. {
  20. int[] array;
  21. int threadCount;
  22. public Vector(int size, int threadCount, Random rnd)
  23. {
  24. array = new int[size];
  25. for (int i = 0; i < size; i++)
  26. {
  27. array[i] = rnd.Next(100);
  28. }
  29. this.threadCount = threadCount;
  30. }
  31. void Run(object i)
  32. {
  33. int k = array.Length / threadCount;
  34. for (int j = (int)i * k; j < ((int)i + 1) * k; j++)
  35. {
  36. array[j] = (int)Math.Pow(array[j], 3);
  37. Console.WriteLine("Поток {0}", (int)i + 1);
  38. }
  39. }
  40. public void Start()
  41. {
  42. Thread[] t = new Thread[threadCount];
  43. for (int i = 0; i < threadCount; i++)
  44. {
  45. DateTime dt1, dt2;
  46. dt1 = DateTime.Now;
  47. dt2 = DateTime.Now;
  48. TimeSpan ts = dt2 - dt1;
  49. t[i] = new Thread(new ParameterizedThreadStart(Run));
  50. t[i].Start(i);
  51. t[i].Join(i);
  52. Console.WriteLine("Основной поток: Завершение рабочего потока.");
  53. Console.WriteLine("Время выполнение: {0}", ts.TotalMilliseconds);
  54. }
  55. }
  56. }
  57. }

Решение задачи: «Многопоточная обработка двумерного массива!»

textual
Листинг программы
  1. class Vector
  2. {
  3.     int[,] array;
  4.     int threadCount;
  5.     public Vector(int size, int threadCount, Random rnd)
  6.     {
  7.         array = new int[size, size];
  8.         for (int i = 0; i < size; i++)
  9.             for (int j = 0; j < size; j++)
  10.                 array[i, j] = rnd.Next(100);
  11.         this.threadCount = threadCount;
  12.     }
  13.  
  14.     void Run(object i)
  15.     {
  16.         int k = array.GetLength(0) / threadCount;
  17.            
  18.         for (int m = 0; m < array.GetLength(0); m++)
  19.         {
  20.             for (int j = (int)i * k; j < ((int)i + 1) * k; j++)
  21.             {
  22.                 array[m, j] = (int)Math.Pow(array[m, j], 3);
  23.                 Console.WriteLine("Поток {0}", (int)i + 1);
  24.             }
  25.         }
  26.     }
  27.  
  28.     public void Start()
  29.     {
  30.         Thread[] t = new Thread[threadCount];
  31.  
  32.         for (int i = 0; i < threadCount; i++)
  33.         {
  34.             DateTime dt1, dt2;
  35.             dt1 = DateTime.Now;
  36.             dt2 = DateTime.Now;
  37.             TimeSpan ts = dt2 - dt1;
  38.             t[i] = new Thread(new ParameterizedThreadStart(Run));
  39.             t[i].Start(i);
  40.             t[i].Join(i);
  41.             Console.WriteLine("Основной поток: Завершение рабочего потока.");
  42.             Console.WriteLine("Время выполнение: {0}", ts.TotalMilliseconds);
  43.         }
  44.     }
  45. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

11   голосов , оценка 4.182 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы