#pragma once
#include <stdio.h>
#include <conio.h>
#include <sstream>
#include <iostream>
#include <thread>
#include <mutex>
#include <string>
#include <cstdlib>
#include <ctime>
#include <fstream>
using namespace std;
int k;
int *arra;
namespace Project1 {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
/// <summary>
/// Сводка для MyForm
/// </summary>
public ref class MyForm : public System::Windows::Forms::Form
{
public:
MyForm(void)
{
InitializeComponent();
//
//TODO: добавьте код конструктора
//
}
protected:
/// <summary>
/// Освободить все используемые ресурсы.
/// </summary>
~MyForm()
{
if (components)
{
delete components;
}
}
protected:
private: System::Windows::Forms::Button^ button1;
private: System::Windows::Forms::TextBox^ textBox1;
private: System::Windows::Forms::Label^ label1;
private: System::Windows::Forms::Button^ button2;
private: System::ComponentModel::BackgroundWorker^ backgroundWorker1;
private: System::Windows::Forms::Timer^ timer1;
private: System::Windows::Forms::ProgressBar^ progressBar1;
private: System::Windows::Forms::TextBox^ textBox2;
private: System::ComponentModel::IContainer^ components;
protected:
private:
/// <summary>
/// Обязательная переменная конструктора.
/// </summary>
#pragma region Windows Form Designer generated code
/// <summary>
/// Требуемый метод для поддержки конструктора — не изменяйте
/// содержимое этого метода с помощью редактора кода.
/// </summary>
void InitializeComponent(void)
{
this->components = (gcnew System::ComponentModel::Container());
this->button1 = (gcnew System::Windows::Forms::Button());
this->textBox1 = (gcnew System::Windows::Forms::TextBox());
this->label1 = (gcnew System::Windows::Forms::Label());
this->button2 = (gcnew System::Windows::Forms::Button());
this->backgroundWorker1 = (gcnew System::ComponentModel::BackgroundWorker());
this->timer1 = (gcnew System::Windows::Forms::Timer(this->components));
this->progressBar1 = (gcnew System::Windows::Forms::ProgressBar());
this->textBox2 = (gcnew System::Windows::Forms::TextBox());
this->SuspendLayout();
//
// button1
//
this->button1->Location = System::Drawing::Point(26, 193);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(75, 23);
this->button1->TabIndex = 1;
this->button1->Text = L"Генерация";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &MyForm::button1_Click_1);
//
// textBox1
//
this->textBox1->Location = System::Drawing::Point(37, 49);
this->textBox1->Multiline = true;
this->textBox1->Name = L"textBox1";
this->textBox1->Size = System::Drawing::Size(194, 99);
this->textBox1->TabIndex = 2;
this->textBox1->TextChanged += gcnew System::EventHandler(this, &MyForm::textBox1_TextChanged);
//
// label1
//
this->label1->AutoSize = true;
this->label1->Location = System::Drawing::Point(23, 18);
this->label1->Name = L"label1";
this->label1->Size = System::Drawing::Size(82, 13);
this->label1->TabIndex = 4;
this->label1->Text = L"Розмір масиву";
this->label1->Click += gcnew System::EventHandler(this, &MyForm::label1_Click);
//
// button2
//
this->button2->Location = System::Drawing::Point(197, 193);
this->button2->Name = L"button2";
this->button2->Size = System::Drawing::Size(75, 23);
this->button2->TabIndex = 5;
this->button2->Text = L"Сортировка";
this->button2->UseVisualStyleBackColor = true;
this->button2->Click += gcnew System::EventHandler(this, &MyForm::button2_Click);
//
// backgroundWorker1
//
this->backgroundWorker1->WorkerReportsProgress = true;
this->backgroundWorker1->WorkerSupportsCancellation = true;
this->backgroundWorker1->DoWork += gcnew System::ComponentModel::DoWorkEventHandler(this, &MyForm::backgroundWorker1_DoWork);
//
// timer1
//
this->timer1->Tick += gcnew System::EventHandler(this, &MyForm::timer1_Tick);
//
// progressBar1
//
this->progressBar1->Dock = System::Windows::Forms::DockStyle::Bottom;
this->progressBar1->Location = System::Drawing::Point(0, 238);
this->progressBar1->Name = L"progressBar1";
this->progressBar1->Size = System::Drawing::Size(284, 23);
this->progressBar1->Step = 1;
this->progressBar1->TabIndex = 6;
this->progressBar1->Click += gcnew System::EventHandler(this, &MyForm::progressBar1_Click_1);
//
// textBox2
//
this->textBox2->Location = System::Drawing::Point(156, 155);
this->textBox2->Name = L"textBox2";
this->textBox2->Size = System::Drawing::Size(100, 20);
this->textBox2->TabIndex = 7;
this->textBox2->TextChanged += gcnew System::EventHandler(this, &MyForm::textBox2_TextChanged);
//
// MyForm
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(284, 261);
this->Controls->Add(this->textBox2);
this->Controls->Add(this->progressBar1);
this->Controls->Add(this->button2);
this->Controls->Add(this->label1);
this->Controls->Add(this->textBox1);
this->Controls->Add(this->button1);
this->Name = L"MyForm";
this->Text = L"MyForm";
this->Load += gcnew System::EventHandler(this, &MyForm::MyForm_Load);
this->ResumeLayout(false);
this->PerformLayout();
}
#pragma endregion
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void MyForm_Load(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void panel1_Paint(System::Object^ sender, System::Windows::Forms::PaintEventArgs^ e) {
}
private: System::Void button1_Click_1(System::Object^ sender, System::EventArgs^ e) {
k = System::Convert::ToInt64(textBox1->Text);
arra = new int[k];
int min = 10;
srand(time(NULL));
ofstream fout;
fout.open("fix.txt");
if (k > min) {
for (int i = 0; i < k; i++) {
arra[i] = rand() % k;
}
for (int i = 0; i < k; i++) {
fout << arra[i] << "\n";
}
}
backgroundWorker1->RunWorkerAsync();
this->timer1->Start();
}
private: System::Void label1_Click(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void textBox1_TextChanged(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void button2_Click(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void backgroundWorker1_DoWork(System::Object^ sender, System::ComponentModel::DoWorkEventArgs^ e) {
int tmp = 0;
ofstream fou;
fou.open("fixs.txt");
for (int i = 0; i < k - 1; ++i) {
int min_ind = i;
for (int j = i + 1; j < k; j++) {
if (arra[j] < arra[min_ind]) {
min_ind = j;
}
}
if (i != min_ind) {
tmp = arra[i];
arra[i] = arra[min_ind];
arra[min_ind] = tmp;
}
fou << arra[i] << "\n";
}
}
private: System::Void backgroundWorker1_ProgressChanged(System::Object^ sender, System::ComponentModel::ProgressChangedEventArgs^ e) {
progressBar1->Value += e->ProgressPercentage;
}
private: System::Void progressBar1_Click_1(System::Object^ sender, System::EventArgs^ e) {
}
private: System::Void backgroundWorker1_RunWorkerCompleted(System::Object^ sender, System::ComponentModel::RunWorkerCompletedEventArgs^ e) {
MessageBox::Show("Успех");
}
private: System::Void timer1_Tick(System::Object^ sender, System::EventArgs^ e) {
progressBar1->Increment(1);
if (progressBar1->Value == 100) {
}
}
private: System::Void textBox2_TextChanged(System::Object^ sender, System::EventArgs^ e) {
}
};
}