摘要:
试除法判断质数 时间复杂度 O(√n) 代码 bool is_prime(int x) { if (x == 1) return false; for (int i = 2; i <= x / i; i++) if (x % i == 0) return false; return true; } 阅读全文
posted @ 2023-02-23 22:04 lyc2002 阅读(14) 评论(0) 推荐(0) 编辑
posted @ 2023-02-23 22:04 lyc2002 阅读(14) 评论(0) 推荐(0) 编辑
posted @ 2023-02-23 20:00 lyc2002 阅读(25) 评论(0) 推荐(0) 编辑
posted @ 2023-02-23 16:18 lyc2002 阅读(14) 评论(0) 推荐(0) 编辑