Форум программистов, компьютерный форум, киберфорум
С++ для начинающих
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
Другие темы раздела
C++ Дано целое число в диапазоне 10–40 https://www.cyberforum.ru/ cpp-beginners/ thread565037.html
Дано целое число в диапазоне 10–40, определяющее количество учебных заданий по некоторой теме. Вывести строку-описание указанного количества заданий, обеспечив правильное согласование числа со словами «учебное задание», например: 18 — «восемнадцать учебных заданий», 23 — «двадцать три учебных задания», 31 — «тридцать одно учебное задание».
C++ Соединение строки с числом
Есть строка char* a = "str". Как можно соединить ее с числом, чтобы получилось str1, str2 ... strN? Т.е. все это проходит в цикле. Пробовал strcat и strcpy, но не получается.
C++ Заполнение и сохранение массива структур не работает... Я хочу сделать справочник кулинарных рецептов, (в него входит: название рецепта, ингредиенты(это у меня и вызывает затруднение) и приготовление). Все было бы хорошо, НО ингредиентов может быть несколько, и в каждом рецепте их число может меняться... Как это реализовать? Я думал что через структуру, но выдает странные ошибки... struct files { char Name; char Recept; int nkeys; } File; https://www.cyberforum.ru/ cpp-beginners/ thread565026.html C++ Дано предложение. Создать файл и записать в него все символы данного предложения, отличные от цифр. Вывести содержимое файла на экран https://www.cyberforum.ru/ cpp-beginners/ thread565013.html
Ребята, помогите, пожалуйста!
Непонятны некоторые операторы C++
Читал, читай книгу по C++. Что понял что нет. Пожалуйста помогите с такими вопросами: - Для чего нужна операция "?:" ?, я этого не понял. - пожалуйста обьясните русским языком что такое перегрузка операции... Ничего не понял по этому поводу. -пожалуйста обьясните про работу операций New и Delete и чем они отличаются от обычного обьявиения переменной? Пишите не стесняйтесь, буду рад абсолютно...
C++ Кто знаком с алгоритмом быстрого поиска Поиск в массиве Расскажите и если можно код на языке с++ с комметариями Добавлено через 5 минут вот есть алгоритм, но не могу понять какие переменные за что отвечают http://algolist.manual.ru/search/esearch/qsearch.php https://www.cyberforum.ru/ cpp-beginners/ thread565008.html
C++ выполнение условия в программе https://www.cyberforum.ru/ cpp-beginners/ thread564997.html
Недавно начал изучать программирование, потому не судите строго). Делал на M. Visual C++ 2010 Express. Решил попробовать создать прогу по основному профилю работы. Суть программы вычислить по формуле показатель Скорости клубочковой фильтрации в почках stdafx.h #pragma once #include "targetver.h" #include <iostream> #include <stdio.h> #include <tchar.h>
Работа с set_terminate в vs2010 C++
Нужно перехватить непредусмотренное исключение.Делаю так #include "stdafx.h" #include <iostream> #include <stdexcept> #include <eh.h> using namespace System; void new_terminate() {
C++ Во входном файле содержится информация об каждом из n работников некоторой фирмы. Во входном файле содержится информация об каждом из n работников некоторой фирмы. Пол указывается буквами М и Ж, возраст – целое от 16 до 35, отделов фирмы– 5. Ввести эту информацию и напечатать номер отдела, на котором наибольший процент мужчин. Заранее большое спасибо. https://www.cyberforum.ru/ cpp-beginners/ thread564984.html C++ не работает умножение на 0 https://www.cyberforum.ru/ cpp-beginners/ thread564979.html
вместо 0 выдает -1,25549e+067 почему такое происходит не могу понять, подскажите как исправить часть кода где идет умновдение for (int i = 1; i <= N-r; i++) { for (int j = 1; j <= N-r; j++) { if(i==N-r){if(j==N-r){ for(int k=j+1; k<N; k++)
Помогите реализовать программу с графом на с++ C++
Ребята очень нуждаюсь в помощи! Найти тотальный граф для неориентированного графа. Короче, нужно написать программу на С++, через структуру данных, нельзя использовать константы... Граф представить способом списков смежностей, открыть из файла... p.s. тотальный граф это граф, у которого двум смежным вершинам соответствует ещё одна вершина.
C++ Генерирование особых графов https://www.cyberforum.ru/ cpp-beginners/ thread564959.html
кто может привести какой-либо тест(пример в текстовом файле) или алгоритм генерирования тестов для создания произвольного графа с иерархической структурой ввиде матрицы смежности (желательно чтобы вершин было много) ? (заранее спасибо)
1 / 1 / 2
Регистрация: 06.11.2011
Сообщений: 68
04.05.2012, 23:12  [ТС] 0

Утечка памяти (Expression: _CrtIsValidHeapPointer(pUserData)) - C++ - Ответ 2991178

04.05.2012, 23:12. Показов 15163. Ответов 27
Метки (Все метки)

Ответ

Цитата Сообщение от Avazart Посмотреть сообщение
Приведите весь исправленный код, тогда будет о чем говорить...
Пожалуйста:
.h
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
#pragma once
 
class HeatingSystem
{
public:
    virtual void ShowInformation() = 0;
    virtual void SetInformation() = 0;
    virtual ~HeatingSystem()=0;
};
HeatingSystem::~HeatingSystem()
{/*cout<<"Destr";*/}
 
class Kotel: public HeatingSystem
{
public:
    char* NameOfKotel;
    char* TypeOfKotel;
    char* MadeIn;
    int AreaOfHeating;
    int PowerOfKotelInKwat;
    int PerformanceOfHotWater;
    int PowerOfElecticity;
 
    void ShowInformation();
    void SetInformation();
    static vector<Kotel> GetVehiclesFromFile(char* fileName);
    static void SaveVehiclesToFile();
    ~Kotel() {}
 
};
 
class Route: public HeatingSystem
{
public:
    char* NameOfKotelRoute;
    int LevelOfTempWater;
    int LevelOfTempRoom;
    int LevelOfPressure;
    vector<Kotel> Kotels;
 
    void ShowInformation();
    void SetInformation();
    static vector <Route> GetDataFromFile();
    static void SaveRoutesToFile();
    ~Route() {}
};
 
vector<Route> Routes;
 
 
//vector <Route> Routes;
//
//vector<Kotel> FreeKotels;
 
void Kotel::SetInformation()
{
    Kotel kotel;
    cout<<"Enter the name: ";
    kotel.NameOfKotel = "";
    cin>>kotel.NameOfKotel;
 
    cout<<"Enter the type: ";
    cin>>kotel.TypeOfKotel;
 
    cout<<"Enter the area of heating: ";
    cin>>kotel.AreaOfHeating;
 
    cout<<"Enter the power of kotel in kWat: ";
    cin>>kotel.PowerOfKotelInKwat;
 
    cout<<"Enter the performance of hot water: ";
    cin>>kotel.PerformanceOfHotWater;
 
    cout<<"Enter the power of electricity: ";
    cin>>kotel.PowerOfElecticity;
 
    cout<<"Enter the country where kotel was made: ";
    cin>>kotel.MadeIn;
 
    Kotel::SaveVehiclesToFile();
}
 
void Route::SetInformation()
{
    Route route;
 
    cout<<"Enter the name: ";
    route.NameOfKotelRoute = new char;
    cin>>route.NameOfKotelRoute;
 
    cout<<"Enter the level of temperature of water: ";
    cin>>route.LevelOfTempWater;
 
    cout<<"Enter the level of temperature of room: ";
    cin>>route.LevelOfTempRoom;
 
    cout<<"Enter the pressure: ";
    cin>>route.LevelOfPressure;
 
    Routes.push_back(route);
 
    SaveRoutesToFile();
    delete [] route.NameOfKotelRoute;
}
 
#pragma region Kotel Methods
 
vector<Route> Route::GetDataFromFile()
{
    vector<Route> routes;
    std::ifstream file( "routes.txt" ) ;
    char* line ;
 
    while( !file.eof() )
    {
        Route route;
 
        line = new char[256];
        file.getline(line, 256, '\n');
 
        route.Kotels = Kotel::GetVehiclesFromFile(line);
 
        line[strlen(line) - 4] = NULL;
 
        route.LevelOfTempWater = atoi(line);
        delete [] line;
        line = new char[256];
        file.getline(line, 256, '\n');
        route.LevelOfTempRoom = strtod(line, NULL);
        delete [] line;
        line = new char[256];
        file.getline(line, 256, '\n');
        route.LevelOfPressure = atoi(line);
 
        routes.push_back(route);
        delete [] line;
    }
 
    return routes;
}
 
void Route::SaveRoutesToFile()
{
    int i = 0;
    int j = 0;
    std::ofstream file ;
    file.open("routes.txt", ofstream::out);
    file.clear();
    
for (i = 0; i < Routes.size() - 1; i++)
    {
        file<<Routes[i].LevelOfTempWater<<endl;
        file<<Routes[i].LevelOfTempRoom<<endl;
        file<<Routes[i].LevelOfPressure<<endl;
 
        //ofstream streets;
        //char* stretsName = new char;
        //stretsName = Routes[i].NameOfKotelRoute;
        //strcat(stretsName, "-S.txt");
        //streets.open(stretsName, ofstream::out);
        //file.clear();
 
        /*for (j = 0; j < Routes[i].NamesOfStreets.size() - 1; j++)
        {
            streets<<Routes[i].NamesOfStreets[j].first<<endl;
            streets<<Routes[i].NamesOfStreets[j].second<<endl;
        }
        streets<<Routes[i].NamesOfStreets[j].first<<endl;
        streets<<Routes[i].NamesOfStreets[j].second;
        streets.close();*/
    }
    file<<Routes[i].LevelOfTempWater<<endl;
    file<<Routes[i].LevelOfTempRoom<<endl;
    file<<Routes[i].LevelOfPressure<<endl;
    file.close();
    Kotel::SaveVehiclesToFile();
}
 
void Kotel::ShowInformation()
{
    system("cls");
    cout<<"Kotels\n";
    for (int i = 0; i < Routes.size(); i++)
    {
        for (int k = 0; k < Routes[i].Kotels.size(); k++)
        {
            cout<<"\tName - "<<Routes[i].Kotels[k].NameOfKotel<<endl;
            cout<<"\tType - "<<Routes[i].Kotels[k].TypeOfKotel<<endl;
            cout<<"\tArea - "<<Routes[i].Kotels[k].AreaOfHeating<<endl;
            cout<<"\tPower[kWat] - "<<Routes[i].Kotels[k].PowerOfKotelInKwat<<endl;
            cout<<"\tPerformance - "<<Routes[i].Kotels[k].PerformanceOfHotWater<<" lt"<<endl;
            cout<<"\tPowerElectro - "<<Routes[i].Kotels[k].PowerOfElecticity<<endl<<endl;
            cout<<"\tMade in - "<<Routes[i].Kotels[k].MadeIn<<endl<<endl;
        }
        cout<<endl;
    }
}
 
vector<Kotel> Kotel::GetVehiclesFromFile(char* fileName)
{
    vector<Kotel> kotels;
 
    std::strcat(fileName, ".txt");
 
    std::ifstream file( fileName ) ;
 
    char* line ;
 
    while( !file.eof() )
    {
        Kotel kotel;
 
        line = new char[256];
        file.getline(line, 256, '\n');
        kotel.NameOfKotel = line;
 
        line = new char[256];
        file.getline(line, 256, '\n');
        kotel.TypeOfKotel = line;
 
        line = new char[256];
        file.getline(line, 256, '\n');
        kotel.MadeIn = line;
 
        line = new char[256];
        file.getline(line, 256, '\n');
        kotel.AreaOfHeating = atoi(line);
 
        line = new char[256];
        file.getline(line, 256, '\n');
        kotel.PowerOfKotelInKwat = atoi(line);
 
        line = new char[256];
        file.getline(line, 256, '\n');
        kotel.PerformanceOfHotWater = atoi(line);
 
        line = new char[256];
        file.getline(line, 256, '\n');
        kotel.PowerOfElecticity = atoi(line);
 
        kotels.push_back(kotel);
    }
 
    return kotels;
    delete [] line;
}
 
void Kotel::SaveVehiclesToFile()
{
    int i = 0;
    int j = 0;
    for (i = 0; i < Routes.size(); i++)
    {
        std::ofstream file;
        char* fileName = Routes[i].NameOfKotelRoute;
        strcat(fileName, ".txt");
        file.open(fileName, ofstream::out);
        file.clear();
        for (j = 0; j < Routes[i].Kotels.size() - 1; j++)
        {
            file<<Routes[i].Kotels[j].NameOfKotel<<endl;
            file<<Routes[i].Kotels[j].TypeOfKotel<<endl;
            file<<Routes[i].Kotels[j].AreaOfHeating<<endl;
            file<<Routes[i].Kotels[j].PowerOfKotelInKwat<<endl;
            file<<Routes[i].Kotels[j].PerformanceOfHotWater<<endl;
            file<<Routes[i].Kotels[j].MadeIn<<endl;
        }
        file<<Routes[i].Kotels[j].NameOfKotel<<endl;
        file<<Routes[i].Kotels[j].TypeOfKotel<<endl;
        file<<Routes[i].Kotels[j].AreaOfHeating<<endl;
        file<<Routes[i].Kotels[j].PowerOfKotelInKwat<<endl;
        file<<Routes[i].Kotels[j].PerformanceOfHotWater<<endl;
        file<<Routes[i].Kotels[j].MadeIn<<endl;
        file.close();
        //fileName = new char;
    }
}
 
void Route::ShowInformation()
{
    system("cls");
    cout<<"Routes\n";
    for (int i = 0; i < Routes.size(); i++)
    {
        cout<<"Name - "<<Routes[i].NameOfKotelRoute<<endl;
        cout<<"Temperature water - "<<Routes[i].LevelOfTempWater<<endl;
        cout<<"Temperature room - "<<Routes[i].LevelOfTempRoom<<endl;
        cout<<"Pressure - "<<Routes[i].LevelOfPressure<<" hod"<<endl;
        
        cout<<"\nVehicles:\n";
        for (int k = 0; k<Routes[i].Kotels.size(); k++)
        {
            cout<<"\tName - "<<Routes[i].Kotels[k].NameOfKotel<<endl;
            cout<<"\tType - "<<Routes[i].Kotels[k].TypeOfKotel<<endl;
            cout<<"\tArea - "<<Routes[i].Kotels[k].AreaOfHeating<<" km/hod"<<endl;
            cout<<"\tPower - "<<Routes[i].Kotels[k].PowerOfKotelInKwat<<endl;
            cout<<"\tPerformance - "<<Routes[i].Kotels[k].PerformanceOfHotWater<<" lt"<<endl;
            cout<<"\tPower - "<<Routes[i].Kotels[k].PowerOfElecticity<<endl<<endl;
            cout<<"\tMadeIn - "<<Routes[i].Kotels[k].MadeIn<<endl<<endl;
        }
        
 
cout<<endl<<endl;
    }
}
 
#pragma endregion Generic Methods
.cpp
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// KPIZ.cpp: определяет точку входа для консольного приложения.
//
 
#include "stdafx.h"
#include <stdio.h>
#include <iostream>
#include <fstream>
#include <conio.h>
#include <vector>
#include <string.h>
#include <Windows.h>
#include <time.h>
#include <process.h>
#include <Windows.h>
using namespace std;
 
#include "HeatingSystem.h"
 
#pragma region Generic Methods
 
bool ContinueOrExit()
{
    cout<<"Do you want to continue? - (y / n): ";
    int key = getch(); 
 
    if (key == 121)
    {
        return true;
    } 
    if (key == 110)
    {
        return false;
    }
}
 
#pragma endregion Generic Methods
 
int main()
{
//  srand(time(0));
 
    HeatingSystem* heatingSystem;
    Kotel kotel;
    Route route;
 
    Routes = route.GetDataFromFile();
    
    while(1)
    {
        system("cls");
        int key;
        cout<<"\n 1 - Current data\n 2 - Demonstration of the specified route within one working day\n 3 - Run simulation\n 4 - Exit\n Choose the action: ";
        cin>>key;
        switch(key)
        {
            case 1: {
 
system("cls");
int key;
cout<<"\n 1 - Transports\n 2 - Routes\n 3 - Passanger\n 4 - Exit\n Choose the action: ";
cin>>key;
switch(key)
{
        case 1:{
                heatingSystem = &kotel;
                cout<<"\n 1 - Set information\n 2 - Show information\n 3 - Exit\n Choose the action: ";
                int key;
                cin>>key;
                if (key == 1)
                {
                    heatingSystem->SetInformation();
                }
                else
                if (key == 2)
                {
                    heatingSystem->ShowInformation();
                }
                break;
               }
        case 2:{
                heatingSystem = &route;
                cout<<"\n 1 - Set information\n 2 - Show information\n 3 - Exit\n Choose the action: ";
                int key;
                cin>>key;
                if (key == 1)
                {
                    heatingSystem->SetInformation();
                }
                else
                if (key == 2)
                {
                    heatingSystem->ShowInformation();
                }
                break;
            }
//case 3:{
//              heatingSystem = &passanger;
//              cout<<"\n 1 - Change information\n 2 - Show information\n 3 - Exit\n Choose the action: ";
//              int key;
//              cin>>key;
//              if (key == 1)
//              {
//                  transportSystem->SetInformation();
//              }
//              else
//              if (key == 2)
//              {
//                  transportSystem->ShowInformation();
//              }
//              break;
//          }
case 4:{
                return 0;
            }
        }
        break;
    }
 
 
            //case 2:
            //  {
            //      //Demostrate(route);
            //      break;
            //  }
            case 3:
                {
                    for (int i = 0; i < Routes.size(); i++)
                    {
                        for (int j = 0; j < Routes[i].Kotels.size(); j++)
                        {
                            int k = (i * 10) + j;
                            //_beginthread(Simulate, 0, (void*)k);
                        }
                    }
                    break;
                }
            case 4: 
                {
                    return 0;
                }
        }
        /*if (!ContinueOrExit())
        {
            return 0;
        }*/
    }
    return 0;
}


Вернуться к обсуждению:
Утечка памяти (Expression: _CrtIsValidHeapPointer(pUserData)) C++
0
Заказать работу у эксперта
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
04.05.2012, 23:12
Готовые ответы и решения:

HttpWebRequest, расход памяти непомерно больших объемов и , как следствие, утечка памяти
Добрый вечер. Мне была поставлена такая задача. Написать приложение, которая загружает из списка...

Вектор, утечка памяти, функция создания и выделение памяти
Здравствуйте. Есть проблема. функция malloc выделяет память лишь в функции CreateVector(), и при...

Утечка памяти...
Вообщем написал код: QMap&lt;QString, QMultiMap&lt;bool, QString&gt; &gt; lstPlug; QMultiMap&lt;bool,...

Утечка памяти
Привет! написал программму, и не могу разобраться где утекает память. помогите кто сможет. ...

27
04.05.2012, 23:12
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
04.05.2012, 23:12
Помогаю со студенческими работами здесь

утечка памяти
если запустить код char *pointer = NULL; for( int i = 0; i &lt; 10; i++ ) { pointer = new char; }...

Утечка памяти
Здравствуйте. Навоял такой вот кодик. Когда много файлов в директории dir, происходит утечка...

Утечка памяти
Почему даже в пустом приложении, в котором весь код(кроме main) сгенерировала сама среда, идут...

Утечка памяти
Сворачиваю приложение в трей, затем убираю значок с панели задач, и тут начинается утечка памяти,...

0
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru