Динамический список поменять адрес элемент с i на i+1 - C#

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

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

Есть динамический список, нам надо с одного места переставить в другое элемент, как это можно сделать, список написан с нуля, класс не используется. Вы наверно не смогли понять что я написал, поэтому смотрите на фото, я нарисую что надо сделать. Заранее спасибо.

Решение задачи: «Динамический список поменять адрес элемент с i на i+1»

textual
Листинг программы
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.IO;
  10.  
  11. namespace WindowsFormsApplication1
  12.  
  13. class VstavkaM12 : MyList
  14.     {
  15.         private int[] mass;
  16.         private int Length;
  17.         private int CurNum;
  18.         public int kolVstvk=0;
  19.         public int kolSrvn=0;
  20.         public VstavkaM12(int n)
  21.         {
  22.             mass = new int[n];
  23.             Length = n;
  24.             CurNum = 0;
  25.         }
  26.  
  27.         public void inputmass(int a, int b)
  28.         {
  29.             Random r = new Random();
  30.             for (int i = 0; i < this.Length; i++)
  31.             {
  32.                 int n = r.Next(a, b);
  33.                 Push(n);
  34.             }
  35.         }
  36.  
  37.         public void inputFile(OpenFileDialog ofd)
  38.         {
  39.             if (ofd.ShowDialog() == DialogResult.OK)
  40.             {
  41.                 string filename = ofd.FileName;
  42.                 StreamReader sr = new StreamReader(filename, System.Text.Encoding.Default);
  43.                 string s = sr.ReadLine();
  44.                 string[] S = s.Split(' ');
  45.                 mass = new int[S.Length];
  46.                 Length = S.Length;
  47.                 for (int i = 0; i < S.Length; i++)
  48.                 {
  49.                     Push(int.Parse(S[i]));
  50.                 }
  51.             }
  52.         }
  53.         public void outputmass(TextBox tx, TextBox txkolVstvk, TextBox txkolSrvn)
  54.         {
  55.  
  56.             if (kolSrvn == 0) tx.Text += "Начальный массив:\r\n";
  57.  
  58.             else tx.Text += "\nОтсортированный массив:\r\n";
  59.  
  60.             for (int i = 0; i < this.Length; i++)
  61.             {
  62.  
  63.                 tx.Text += Convert.ToString(this[i].Element) + " " + "\r";
  64.  
  65.             }
  66.  
  67.             txkolVstvk.Text = Convert.ToString(kolVstvk);
  68.  
  69.             txkolSrvn.Text = Convert.ToString(kolSrvn);
  70.         }
  71.        
  72.  
  73.        
  74.     public void PoiskM1(int x)
  75.         {
  76.             int min = this[x].Element;
  77.             int k = x;
  78.            
  79.             for (int i = x; i < this.Length; i++)
  80.             {
  81.                 kolSrvn++;
  82.                 if (this[i].Element < min)
  83.                 {
  84.                     min = this[i].Element;
  85.                     k = i;
  86.                 }
  87.                 if (min != this[x].Element)
  88.                 {
  89.                     int f = this[x].Element;
  90.                     this[x].Element = min;
  91.                     this[k].Element = f;
  92.                 }
  93.             }
  94.         }
  95.                        
  96.         public void sortirovkaM1()
  97.         {
  98.             for (int i = 0; i < this.Length ; i++)
  99.             {
  100.                 kolVstvk++;
  101.                 PoiskM1(i);
  102.             }
  103.         }
  104.  
  105.  
  106.         public int PoiskM3(int i)
  107.         {
  108.             int j = 0;
  109.             int d = 0;
  110.  
  111.             int c = this[i].Element;
  112.             j = i - 1;
  113.             while (j >= 0 && this[j].Element > c)
  114.             {
  115.                 kolSrvn++;
  116.                 d++;
  117.                 j--;
  118.             }
  119.             return d;
  120.         }
  121.         void Swap(int x, int y)
  122.         {
  123.             int f = this[x].Element;
  124.             this[x].Element = this[y].Element;
  125.             this[y].Element = f;
  126.             kolVstvk++;
  127.         }
  128.  
  129.         public void SortirovkaM3()
  130.         {
  131.            kolVstvk= 0;
  132.             for (int i = 0; i < this.Length; i++)
  133.             {
  134.                 int t = PoiskM3(i);
  135.                 int j = 1;
  136.                 while (t != 0)
  137.                 {
  138.                     Swap(i - j, i - j + 1);
  139.                     t--;
  140.                     j++;
  141.                 }
  142.             }
  143.         }
  144.     }
  145. }
  146.                            
  147.  
  148.  
  149.  
  150.  
  151.  namespace WindowsFormsApplication1
  152. {
  153.     public partial class Form1 : Form
  154.     {
  155.         public Form1()
  156.         {
  157.             InitializeComponent();
  158.         }
  159.  
  160.         private void button1_Click(object sender, EventArgs e)
  161.         {
  162.             VstavkaM12 Z = new VstavkaM12(10);
  163.             Z.inputmass(0, 10);
  164.             Z.outputmass(textBox1, textBox3, textBox4);
  165.             Z.sortirovkaM1();
  166.             Z.outputmass(textBox1, textBox3, textBox4);
  167.  
  168.         }
  169.  
  170.  
  171.         private void button2_Click(object sender, EventArgs e)
  172.         {
  173.            VstavkaM12 Z = new VstavkaM12(10);
  174.             Z.inputFile(openFileDialog1);
  175.             Z.outputmass(textBox1, textBox3, textBox4);
  176.             Z.sortirovkaM1();
  177.             Z.outputmass(textBox1, textBox3, textBox4);
  178.         }
  179.  
  180.         private void button3_Click_1(object sender, EventArgs e)
  181.         {
  182.  
  183.             VstavkaM12 Z = new VstavkaM12(10);
  184.             Z.inputmass(-100, 100);
  185.             Z.outputmass(textBox2, textBox6, textBox5);
  186.             Z.SortirovkaM3();
  187.             Z.outputmass(textBox2, textBox6, textBox5);
  188.         }
  189.  
  190.         private void button4_Click_1(object sender, EventArgs e)
  191.         {
  192.             VstavkaM12 Z = new VstavkaM12(10);
  193.             Z.inputFile(openFileDialog1);
  194.             Z.outputmass(textBox2, textBox6, textBox5);
  195.             Z.SortirovkaM3();
  196.             Z.outputmass(textBox2, textBox6, textBox5);
  197.         }
  198.  
  199.     }
  200. }

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


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

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

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

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

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

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