C++文件名按逻辑语义排序

#include <string>
#include <vector>
#include <algorithm>
#include <Shlwapi.h>

#pragma comment(lib,"Shlwapi.lib")

using namespace std;

wstring string2wstring(string str)
{
	wstring result;
	int len = MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, NULL, 0);
	wchar_t* buffer = new wchar_t[len + 1];
	MultiByteToWideChar(CP_ACP, 0, str.c_str(), -1, buffer, len);
	buffer[len] = '\0';
	result.append(buffer);
	delete[] buffer;
	return result;
}
 
bool cmp(const string& v1, const string& v2)
{
	wstring wv1 = string2wstring(v1);
	wstring wv2 = string2wstring(v2);
	return StrCmpLogicalW(wv1.c_str(), wv2.c_str()) < 0;
}


void main()
{
    vector<string> rawFileName;
    //添加文件名至rawFileName;
    //...
    sort(rawFileName.begin(),rawFileName.end(),cmp);
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值