gpt4 book ai didi

c++ - 排列 ID..? C++

转载 作者:行者123 更新时间:2023-11-30 02:58:32 25 4
gpt4 key购买 nike

<分区>

我正在使用排列将字符串(使用它的每个字符)生成为“helloworld!”,但是它需要...176791 才能到达“helloworld!”有什么方法可以让我只输入:176791 来快速排列成“helloworld!”?

        ...
176790. helloworl!d
176791. helloworld!

我的代码:

#include <windows.h>
#include <string>
#include <iostream>
#include <algorithm>

int main( void )
{
::UINT64 Count = 0;
std::string SomeString = "eohldo!lwrl";
do
{
Count ++;
std::cout << Count << ". " << SomeString << std::endl;
if( SomeString == "helloworld!" )
break;
} while( std::next_permutation( SomeString.begin( ), SomeString.end( ) ) );

::getchar( );
return( 0 );
};

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com