Skip to content

Instantly share code, notes, and snippets.

View skhozinova's full-sized avatar

SOFIA KHOZINOVA skhozinova

  • Russia
View GitHub Profile
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using student;
namespace student
{
interface IStudentsSort <Students>
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _8_задание
{
enum nazvanie_classa { A, B, C, D, E, unknown };
class CStudent
0 0 0
1 0 0
1 0 1
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
//Постройте дерево бинарного поиска и определите есть ли в нем узел с заданным значением a.
struct Ttree
{
int inf;
Ttree *left;
Ttree *right;
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
// Создать список из целых чисел. Подсчитать сумму положительных элементов. Создать из них новый список.
struct tqueue // описание очереди
{
int inf;
tqueue *next;
};
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
// Создать список из целых чисел. Подсчитать сумму положительных элементов. Создать из них новый список.
struct tqueue // описание очереди
{
int inf;
tqueue *next;
};
#include<stdio.h>
#include<conio.h>
//инициализация очереди
void init_queue(tqueue *&h, tqueue *&t)
{h=t=NULL;}
//добавление элемента в очередь
void insert(tqueue *&h,tqueue *&t, int item)
{
#include<stdio.h>
#include<conio.h>
//инициализация очереди
void init_queue(tqueue *&h, tqueue *&t)
{h=t=NULL;}
//добавление элемента в очередь
void insert(tqueue *&h,tqueue *&t, int item)
{
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<locale.h>
//Создать список из целых чисел. Подсчитать количество отрицательных элементов, создав из них новый список.
struct tqueue //структура очереди
{
int inf;
tqueue *next;
};
2
4
5
1
6