Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dertst/772a57739e8b08f064c62268bd6078d4 to your computer and use it in GitHub Desktop.
Save dertst/772a57739e8b08f064c62268bd6078d4 to your computer and use it in GitHub Desktop.
#include "pch.h"
#include <iostream>
#include <stdio.h>
#include <Windows.h>
#include <ctime>
#include <cstdlib>
using namespace std;
struct Branch
{
int value;
Branch *left, *right;
};
int result=0;
char inputString[256];
void show(Branch *&Tree, int Limit)
{
if (Tree != NULL)
{
show(Tree->left, Limit);
printf("%d ", Tree->value);
show(Tree->right, Limit);
}
}
void CalculateTree(Branch *&Tree, int Limit)
{
if (Tree != NULL)
{
show(Tree->left, Limit);
result++;
show(Tree->right, Limit);
}
}
void add_node(int value, Branch *&MyTree)
{
if (NULL == MyTree)
{
MyTree = new Branch;
MyTree->value = value;
MyTree->left = MyTree->right = NULL;
}
if (value < MyTree->value)
{
if (MyTree->left != NULL) add_node(value, MyTree->left);
else
{
MyTree->left = new Branch;
MyTree->left->left = MyTree->left->right = NULL;
MyTree->left->value = value;
}
}
if (value > MyTree->value)
{
if (MyTree->right != NULL) add_node(value, MyTree->right);
else
{
MyTree->right = new Branch;
MyTree->right->left = MyTree->right->right = NULL;
MyTree->right->value = value;
}
}
}
int* InputArray(int SizeOfCollection)
{
int *collection = (int*)malloc(SizeOfCollection * sizeof(int));
for (int i = 0; i < SizeOfCollection; i++)
{
cin >> inputString;
for (int j = 0; j < strlen(inputString); j++)
{
if ('0' > inputString[j] || inputString[j] > '9')
{
printf("Данные введены некорректно");
return collection;
}
}
collection[i] = atoi(inputString);
}
return collection;
}
void CalculateArray(int* collection, int Limit, int SizeOfCollection)
{
int result = 0;
for (int i = 0; i < SizeOfCollection; i++)
{
if (collection[i] > Limit)
{
result++;
}
}
}
struct Node
{
int value;
struct Node *next;
struct Node *prev;
};
struct List
{
struct Node* first;
struct Node* last;
};
struct List* create()
{
struct List* list = (struct List*)malloc(sizeof(struct List));
list->first = NULL;
list->last = NULL;
return list;
}
int insert(struct List* list)
{
struct Node* node = (struct Node*)malloc(sizeof(struct Node));
if (list->first == NULL && list->last == NULL)
{
cin >> inputString;
for (int j = 0; j < strlen(inputString); j++)
{
if ('0' > inputString[j] || inputString[j] > '9')
{
printf("Данные введены некорректно");
return 1;
}
}
node->value = atoi(inputString);
node->next = NULL;
node->prev = NULL;
list->first = node;
list->last = node;
}
else {
cin >> inputString;
for (int j = 0; j < strlen(inputString); j++)
{
if ('0' > inputString[j] || inputString[j] > '9')
{
printf("Данные введены некорректно");
return 1;
}
}
node->value = atoi(inputString);
node->prev = list->last;
node->next = NULL;
list->last = node;
}
return 0;
}
int ScrollList(int limit, struct List* list)
{
if (list == NULL || list->first == NULL)
{
return 0;
}
Node* curentNode = list->last;
int result = 0;
printf("коллекция");
do {
printf("%d ", curentNode->value);
curentNode = curentNode->prev;
} while (curentNode != list->last && curentNode != NULL);
}
int CalculatelList(int limit, struct List* list)
{
if (list == NULL || list->first == NULL)
{
return 0;
}
Node* curentNode = list->last;
int result = 0;
printf("коллекция");
do {
result++;
curentNode = curentNode->prev;
} while (curentNode != list->last && curentNode != NULL);
}
int main()
{
setlocale(LC_ALL, "Russian");
printf("Выбирете тип коллекции\nМассив(1)\nДвусвязный список(2)\nДвоичное дерево(3)\nДля выбора нужного типа коллекции введите номер соответствующего типа\n");
int Type;
int StartTime;
int EndTime;
int Time;
int SizeOfCollection;
scanf_s("%d", &Type);
Branch *Tree = NULL;
if (Type == 1)
{
StartTime = clock();
printf("Введите размер коллекции");
printf("\n");
scanf_s("%d", &SizeOfCollection);
printf("Введите число с кототорым хотите сравнить элементы коллекции!");
printf("\n");
int Limit;
scanf_s("%d", &Limit);
printf("коллекция\n");
int* collection = InputArray(SizeOfCollection);
if (sizeof(collection) < SizeOfCollection * 4)
{
return 0;
}
for (int i = 0; i < SizeOfCollection; i++)
{
printf("%d", collection[i]);
}
CalculateArray(collection, Limit, SizeOfCollection);
EndTime = clock();
Time = EndTime - StartTime;
}
else if (Type == 2)
{
StartTime = clock();
printf("Введите размер коллекции");
printf("\n");
scanf_s("%d", &SizeOfCollection);
printf("Введите число с кототорым хотите сравнить элементы коллекции!");
printf("\n");
int Limit;
scanf_s("%d", &Limit);
printf("коллекция\n");
struct List* list = create();
for (int i = 0; i < SizeOfCollection; i++)
{
insert(list);
if (insert(list))
{
printf("Данные введены некорректно");
return 0;
}
}
ScrollList(Limit, list);
CalculatelList(Limit, list);
EndTime = clock();
Time = EndTime - StartTime;
}
else if (Type == 3)
{
StartTime = clock();
printf("Введите размер коллекции");
printf("\n");
scanf_s("%d", &SizeOfCollection);
printf("Введите число с кототорым хотите сравнить элементы коллекции!");
printf("\n");
int Limit;
scanf_s("%d", &Limit);
printf("коллекция\n");
int val;
for (int i = 0; i < SizeOfCollection; i++)
{
cin >> inputString;
for (int j = 0; j < strlen(inputString); j++)
{
if ('0' > inputString[j] || inputString[j] > '9')
{
printf("Данные введены некорректно");
return 0;
}
}
val = atoi(inputString);
add_node(val, Tree);
}
show(Tree, Limit);
CalculateTree(Tree, Limit);
EndTime = clock();
Time = EndTime - StartTime;
}
else
{
printf("Нет такого типа коллекции");
return 0;
}
int Member;
if (Type == 1)
{
Member = sizeof(inputString) + sizeof(int) * 8 + sizeof(int)*SizeOfCollection; //8 - Количество переменных используемых при выполнении задания с помощью массивов
}
else if (Type == 2)
{
Member = sizeof(inputString) + sizeof(int) * 8 + sizeof(List); // При помощи списков так же 8 переменных
}
else if (Type == 3)
{
Member = sizeof(inputString) + sizeof(int) * 8 + sizeof(Branch); //При помощи дерева 9 переменных
}
else
{
printf("Нет такого типа коллекции");
}
printf("\nКоличество чисел больше введённого: %d\nКоличество памяти требоемое для хранения данных: %d\nВремя выполнения операции: %d", result, Member, Time);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment