Задача заключается в следующем: для сортировки массива строк с помощью сортировки оболочки сортировка должна выполняться в функции потока с использованием WinAPI. Первоначально программа была написана с использованием глобальных переменных, но было необходимо передать массив строк в качестве аргумента функции потока, а затем начались проблемы с приведением типа.
Ошибка при strcpy_s(strings[i], strings[i + step]);
Журнал ошибок: E0304 no instance of overloaded function "strcpy_s" matches the argument list
.
Друзья, как решить эту проблему? Я думаю, что вся проблема в том, как я конвертирую типы из void * в массив строк.
#include<iostream>
#include<conio.h>
#include<iomanip>
#include <string.h>
#include <string>
#include <Windows.h>
#include <process.h>
using namespace std;
const int row = 10, n = 32;
__int64 to_int64(FILETIME ft)
{
return static_cast<__int64>(ft.dwHighDateTime) << 32 | ft.dwLowDateTime;
}
DWORD WINAPI shellSort(PVOID pParams) {
int step = row / 2;
char** strings = (char**)pParams;
while (step > 0)
{
for (int i = 0; i < (row - step); i++) {
while (i >= 0 && strcmp(strings[i], strings[i + step]) > 0)
{
char temp[n];
strcpy_s(temp, strings[i]);
strcpy_s(strings[i], strings[i + step]);
strcpy_s(strings[i + step], temp);
i--;
}
}
step = step / 2;
}
return 0;
}
int main()
{
int i;
char strings[row][n];
std::cout << "input " << row << " strings:\n";
for (i = 0; i < row; i++) {
cout << i + 1 << ". ";
cin.getline(strings[i], n);
}
std::cout << "\nOurs strings:\n";
for (i = 0; i < row; i++)
printf("%s\n", strings[i]);
printf("\n");
HANDLE thread = CreateThread(NULL, 0, &shellSort, strings, 0, NULL);
SetThreadPriority(thread, THREAD_PRIORITY_ABOVE_NORMAL);
WaitForSingleObject(thread, INFINITE);
FILETIME ft[4];
GetThreadTimes(thread, &ft[0], &ft[1], &ft[2], &ft[3]);
std::cout << (to_int64(ft[1]) - to_int64(ft[0])) << endl;
printf("Sorted array:\n");
for (i = 0; i < row; i++)
printf("%s\n", strings[i]);
getchar();
return 0;
}```