在C 中建立隨機字母數字字串
問題:
問題:產生隨機字元串列C 中具有使用者指定長度的字母數字字元。
解:#include <ctime> #include <iostream> #include <unistd.h> std::string gen_random(const int len) { static const char alphanum[] = "0123456789" "ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz"; std::string tmp_s; tmp_s.reserve(len); for (int i = 0; i < len; ++i) { tmp_s += alphanum[rand() % (sizeof(alphanum) - 1)]; } return tmp_s; } int main(int argc, char *argv[]) { srand((unsigned)time(NULL) * getpid()); std::cout << gen_random(12) << "\n"; return 0; }
使用查找表有效產生隨機字母數字字串:
以上是如何在 C 中產生隨機字母數字字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!