mirror of
https://github.com/tursom/prime_numbers_c.git
synced 2025-03-21 21:00:28 +08:00
update
This commit is contained in:
parent
0395092e89
commit
b3e051ef5f
@ -4,7 +4,7 @@ project(prime_numbers_c C)
|
|||||||
set(CMAKE_C_STANDARD 99)
|
set(CMAKE_C_STANDARD 99)
|
||||||
|
|
||||||
add_executable(prime_numbers_c main.c)
|
add_executable(prime_numbers_c main.c)
|
||||||
add_executable(bit_set bit_set.c)
|
add_executable(bit_set bit_set.c time.h)
|
||||||
IF (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
IF (CMAKE_SYSTEM_NAME MATCHES "Windows")
|
||||||
target_link_libraries(prime_numbers_c)
|
target_link_libraries(prime_numbers_c)
|
||||||
target_link_libraries(bit_set)
|
target_link_libraries(bit_set)
|
||||||
|
50
bit_set.c
50
bit_set.c
@ -4,27 +4,13 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include "time.h"
|
||||||
|
|
||||||
//#define _WIN32
|
#define bitIndex(i) (1 << ((i) & 7))
|
||||||
|
#define bitIsUp(arr, i) arr[(i) >> 3] & bitIndex(i)
|
||||||
#ifdef _WIN32
|
#define bitDown(arr, i) arr[(i) >> 3] &= ~bitIndex(i)
|
||||||
#include <Windows.h>
|
//#define isPrime(num, bitMap) ((num) < 2 ? false : (num) == 2 ? true : !((num) & 1) ? false :\
|
||||||
long getCurrentTime() {
|
//bitIsUp(bitMap, (num) >> 1))
|
||||||
LARGE_INTEGER freq;
|
|
||||||
QueryPerformanceCounter(&freq);
|
|
||||||
return (long) freq.QuadPart / 10;
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
|
|
||||||
#include <sys/time.h>
|
|
||||||
|
|
||||||
long getCurrentTime() {
|
|
||||||
struct timeval tv;
|
|
||||||
gettimeofday(&tv, NULL);
|
|
||||||
return tv.tv_sec * 1000 * 1000 + tv.tv_usec;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断字符串转换为无符号整型是否会溢出
|
* 判断字符串转换为无符号整型是否会溢出
|
||||||
@ -57,9 +43,9 @@ void getPrimeNumbers(unsigned long maxNumber, unsigned char *buffer) {
|
|||||||
unsigned char arr[] = {219, 182, 109};
|
unsigned char arr[] = {219, 182, 109};
|
||||||
unsigned char initIndexArr[] = {1, 2, 0};
|
unsigned char initIndexArr[] = {1, 2, 0};
|
||||||
unsigned char initIndex = 0;
|
unsigned char initIndex = 0;
|
||||||
unsigned char *endP = buffer + needSize;
|
|
||||||
|
|
||||||
// 初始化缓冲区
|
// 初始化缓冲区
|
||||||
|
unsigned char *endP = buffer + needSize;
|
||||||
for (unsigned char *k = buffer + 1; k < endP; ++k) {
|
for (unsigned char *k = buffer + 1; k < endP; ++k) {
|
||||||
*k = arr[initIndex];
|
*k = arr[initIndex];
|
||||||
initIndex = initIndexArr[initIndex];
|
initIndex = initIndexArr[initIndex];
|
||||||
@ -67,21 +53,21 @@ void getPrimeNumbers(unsigned long maxNumber, unsigned char *buffer) {
|
|||||||
*buffer = 0x6e;
|
*buffer = 0x6e;
|
||||||
|
|
||||||
// 进行计算
|
// 进行计算
|
||||||
unsigned int sqrtMaxNumber = (unsigned int) sqrt(maxNumber) >> 1;
|
unsigned int sqrtMaxNumber = (unsigned int) sqrt((double) maxNumber) >> 1;
|
||||||
maxNumber >>= 1;
|
maxNumber >>= 1;
|
||||||
for (size_t i = 2; i <= sqrtMaxNumber; i++) {
|
for (size_t i = 2; i <= sqrtMaxNumber; i++) {
|
||||||
if (buffer[i >> 3] & 1 << (i & 7)) {
|
if (bitIsUp(buffer, i)) {
|
||||||
size_t doubleI = i + i + 1;
|
size_t doubleI = i + i + 1;
|
||||||
for (size_t j = (doubleI * doubleI) >> 1; j < maxNumber; j += doubleI) {
|
for (size_t j = (doubleI * doubleI) >> 1; j < maxNumber; j += doubleI) {
|
||||||
buffer[j >> 3] &= ~(1 << (j & 7));
|
bitDown(buffer, j);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 去除多余结果
|
// 去除多余结果
|
||||||
needSize <<= 3;
|
needSize <<= 3;
|
||||||
for (int l = maxNumber; l < needSize; l++) {
|
for (unsigned long l = maxNumber; l < needSize; l++) {
|
||||||
buffer[l >> 3] &= ~(1 << (l & 7));
|
buffer[l >> 3] &= ~bitIndex(l);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -134,15 +120,7 @@ bool true = 1;
|
|||||||
#pragma ide diagnostic ignored "hicpp-signed-bitwise"
|
#pragma ide diagnostic ignored "hicpp-signed-bitwise"
|
||||||
|
|
||||||
bool isPrime(unsigned int num, const unsigned char *bitMap) {
|
bool isPrime(unsigned int num, const unsigned char *bitMap) {
|
||||||
if (num < 2) {
|
return num < 2 ? false : num == 2 ? true : !(num & 1) ? false : bitIsUp(bitMap, num >> 1);
|
||||||
return false;
|
|
||||||
} else if (num == 2) {
|
|
||||||
return true;
|
|
||||||
} else if (!(num & 1)) {
|
|
||||||
return false; // 偶数
|
|
||||||
} else {
|
|
||||||
return bitMap[num >> 4] & (1 << ((num >> 1) & 7));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma clang diagnostic pop
|
#pragma clang diagnostic pop
|
||||||
@ -153,6 +131,7 @@ bool isPrime(unsigned int num, const unsigned char *bitMap) {
|
|||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
//必须给定最大值
|
//必须给定最大值
|
||||||
if (argc <= 1) {
|
if (argc <= 1) {
|
||||||
|
printf("require maximum number");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -195,7 +174,6 @@ int main(int argc, char *argv[]) {
|
|||||||
if (output) {
|
if (output) {
|
||||||
printf(maxNum < 100001 ? "2 " : "2\n");
|
printf(maxNum < 100001 ? "2 " : "2\n");
|
||||||
for (int i = 3; i <= maxNum; i += 2) {
|
for (int i = 3; i <= maxNum; i += 2) {
|
||||||
// if (buff[i >> 4] & (1 << ((i >> 1) & 7))) { // NOLINT(hicpp-signed-bitwise)
|
|
||||||
if (isPrime(i, buff)) {
|
if (isPrime(i, buff)) {
|
||||||
printf(maxNum < 100001 ? "%d " : "%d\n", i);
|
printf(maxNum < 100001 ? "%d " : "%d\n", i);
|
||||||
}
|
}
|
||||||
|
236
main.c
236
main.c
@ -1,156 +1,152 @@
|
|||||||
#pragma clang diagnostic push
|
#pragma clang diagnostic push
|
||||||
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
#pragma clang diagnostic ignored "-Wunknown-pragmas"
|
||||||
#pragma ide diagnostic ignored "hicpp-signed-bitwise"
|
#pragma ide diagnostic ignored "hicpp-signed-bitwise"
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <event.h>
|
#include "time.h"
|
||||||
#include <glob.h>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 判断字符串转换为无符号整型是否会溢出
|
* 判断字符串转换为无符号整型是否会溢出
|
||||||
*/
|
*/
|
||||||
int willOverFlow(char *numStr) {
|
int willOverFlow(char *numStr) {
|
||||||
static char maxValueStr[32] = {'\0'};
|
static char maxValueStr[32] = {'\0'};
|
||||||
static const int negative1 = -1;
|
static const int negative1 = -1;
|
||||||
static size_t lenOfMaxValue;
|
static size_t lenOfMaxValue;
|
||||||
if (*numStr == '-')return 1;
|
if (*numStr == '-')return 1;
|
||||||
if (!*maxValueStr) {
|
if (!*maxValueStr) {
|
||||||
sprintf(maxValueStr, "%u", *(unsigned int *) &negative1);
|
sprintf(maxValueStr, "%u", *(unsigned int *) &negative1);
|
||||||
lenOfMaxValue = strlen(maxValueStr);
|
lenOfMaxValue = strlen(maxValueStr);
|
||||||
}
|
}
|
||||||
size_t numLen = strlen(numStr);
|
size_t numLen = strlen(numStr);
|
||||||
return lenOfMaxValue < numLen ? 1 :
|
return lenOfMaxValue < numLen ? 1 :
|
||||||
lenOfMaxValue > numLen ? 0 :
|
lenOfMaxValue > numLen ? 0 :
|
||||||
strcmp(maxValueStr, numStr) < 0;
|
strcmp(maxValueStr, numStr) < 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t neededSize(unsigned long maxNumber) {
|
size_t neededSize(unsigned long maxNumber) {
|
||||||
return (((maxNumber - 1) >> 4) + 1) & 0x0fffffffffffffff;
|
return (((maxNumber - 1) >> 4) + 1) & 0x0fffffffffffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
void getPrimeNumbers(unsigned int maxNumber, unsigned char *buffer) {
|
void getPrimeNumbers(unsigned int maxNumber, unsigned char *buffer) {
|
||||||
size_t needSize = neededSize(maxNumber);
|
size_t needSize = neededSize(maxNumber);
|
||||||
for (int k = 1; k < needSize; ++k) {
|
memset(buffer + 1, 0xff, needSize - 1);
|
||||||
buffer[k] = 0xff;
|
// for (int k = 1; k < needSize; ++k) {
|
||||||
}
|
// buffer[k] = 0xff;
|
||||||
*buffer = 0xfe;
|
// }
|
||||||
unsigned int sqrtMaxNumber = (unsigned int) sqrt(maxNumber);
|
*buffer = 0xfe;
|
||||||
for (size_t i = 3; i <= sqrtMaxNumber; i += 2) {
|
unsigned int sqrtMaxNumber = (unsigned int) sqrt(maxNumber);
|
||||||
if (buffer[i >> 4] & 1 << ((i >> 1) & 7)) {
|
for (size_t i = 3; i <= sqrtMaxNumber; i += 2) {
|
||||||
size_t doubleI = i + i;
|
if (buffer[i >> 4] & 1 << ((i >> 1) & 7)) {
|
||||||
for (size_t j = i + doubleI; j <= maxNumber; j += doubleI) {
|
size_t doubleI = i + i;
|
||||||
buffer[j >> 4] &= ~(1 << ((j >> 1) & 7));
|
for (size_t j = i + doubleI; j <= maxNumber; j += doubleI) {
|
||||||
}
|
buffer[j >> 4] &= ~(1 << ((j >> 1) & 7));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
needSize <<= 4;
|
}
|
||||||
for (int l = maxNumber + 1; l < needSize; l++) {
|
needSize <<= 4;
|
||||||
buffer[l >> 4] &= ~(1 << ((l >> 1) & 7));
|
for (int l = maxNumber + 1; l < needSize; l++) {
|
||||||
}
|
buffer[l >> 4] &= ~(1 << ((l >> 1) & 7));
|
||||||
}
|
}
|
||||||
|
|
||||||
long getCurrentTime() {
|
|
||||||
struct timeval tv;
|
|
||||||
gettimeofday(&tv, NULL);
|
|
||||||
return tv.tv_sec * 1000 * 1000 + tv.tv_usec;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
char ByteCode(unsigned char n) {
|
char ByteCode(unsigned char n) {
|
||||||
static const char table[256] = {
|
static const char table[256] = {
|
||||||
0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4,
|
0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4,
|
||||||
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
||||||
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
||||||
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
||||||
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
||||||
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
||||||
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
||||||
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
||||||
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
1, 2, 2, 3, 2, 3, 3, 4, 2, 3, 3, 4, 3, 4, 4, 5,
|
||||||
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
||||||
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
||||||
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
||||||
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
2, 3, 3, 4, 3, 4, 4, 5, 3, 4, 4, 5, 4, 5, 5, 6,
|
||||||
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
||||||
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
3, 4, 4, 5, 4, 5, 5, 6, 4, 5, 5, 6, 5, 6, 6, 7,
|
||||||
4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8,
|
4, 5, 5, 6, 5, 6, 6, 7, 5, 6, 6, 7, 6, 7, 7, 8,
|
||||||
};
|
};
|
||||||
return table[n];
|
return table[n];
|
||||||
}
|
}
|
||||||
|
|
||||||
void printByteMap(unsigned char n) {
|
void printByteMap(unsigned char n) {
|
||||||
printf("%d %d %d %d %d %d %d %d",
|
printf("%d %d %d %d %d %d %d %d",
|
||||||
(n & 1) != 0, (n & 0x2) != 0, (n & 0x4) != 0, (n & 0x8) != 0,
|
(n & 1) != 0, (n & 0x2) != 0, (n & 0x4) != 0, (n & 0x8) != 0,
|
||||||
(n & 0x10) != 0, (n & 0x20) != 0, (n & 0x40) != 0, (n & 0x80) != 0);
|
(n & 0x10) != 0, (n & 0x20) != 0, (n & 0x40) != 0, (n & 0x80) != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int getPrimeCount(unsigned char *buff, size_t buffSize) {
|
unsigned int getPrimeCount(unsigned char *buff, size_t buffSize) {
|
||||||
unsigned int primeCount = 1;
|
unsigned int primeCount = 1;
|
||||||
for (int i = 0; i < buffSize; ++i) {
|
for (int i = 0; i < buffSize; ++i) {
|
||||||
primeCount += ByteCode(buff[i]);
|
primeCount += ByteCode(buff[i]);
|
||||||
}
|
}
|
||||||
return primeCount;
|
return primeCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 程序入口函数
|
* 程序入口函数
|
||||||
*/
|
*/
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
//必须给定最大值
|
//必须给定最大值
|
||||||
if (argc <= 1) {
|
if (argc <= 1) {
|
||||||
return 1;
|
printf("require maximum number");
|
||||||
}
|
return 1;
|
||||||
|
}
|
||||||
//最大值
|
|
||||||
unsigned int maxNum = 0;
|
//最大值
|
||||||
if (argc > 1) {
|
unsigned int maxNum = 0;
|
||||||
//验证maxNum是否小于2,小于2的话计算没有意义
|
if (argc > 1) {
|
||||||
//这里不能用maxNum验证,有负数的问题
|
//验证maxNum是否小于2,小于2的话计算没有意义
|
||||||
if (atol(argv[1]) < 2) { // NOLINT(cert-err34-c)
|
//这里不能用maxNum验证,有负数的问题
|
||||||
return 2;
|
if (atol(argv[1]) < 2) { // NOLINT(cert-err34-c)
|
||||||
}
|
return 2;
|
||||||
|
}
|
||||||
//判断最大值是否溢出
|
|
||||||
if (willOverFlow(argv[1])) {
|
//判断最大值是否溢出
|
||||||
//如果溢出
|
if (willOverFlow(argv[1])) {
|
||||||
//输出错误提示
|
//如果溢出
|
||||||
printf("too large maximum number");
|
//输出错误提示
|
||||||
//程序退出
|
printf("too large maximum number");
|
||||||
//返回1表示最大值溢出
|
//程序退出
|
||||||
return 1;
|
//返回1表示最大值溢出
|
||||||
}
|
return 1;
|
||||||
|
}
|
||||||
//如果都没有问题
|
|
||||||
maxNum = (unsigned int) atol(argv[1]); // NOLINT(cert-err34-c)
|
//如果都没有问题
|
||||||
}
|
maxNum = (unsigned int) atol(argv[1]); // NOLINT(cert-err34-c)
|
||||||
|
}
|
||||||
int output = 1;
|
|
||||||
if (argc > 2) {
|
int output = 1;
|
||||||
output = atoi(argv[2]); // NOLINT(cert-err34-c)
|
if (argc > 2) {
|
||||||
}
|
output = atoi(argv[2]); // NOLINT(cert-err34-c)
|
||||||
|
}
|
||||||
//分配内存,获得缓冲区;
|
|
||||||
unsigned char *buff = malloc(neededSize(maxNum));
|
//分配内存,获得缓冲区;
|
||||||
|
unsigned char *buff = malloc(neededSize(maxNum));
|
||||||
//进行计算
|
|
||||||
long t1 = getCurrentTime();
|
//进行计算
|
||||||
getPrimeNumbers(maxNum, buff);
|
long t1 = getCurrentTime();
|
||||||
long t2 = getCurrentTime();
|
getPrimeNumbers(maxNum, buff);
|
||||||
//输出
|
long t2 = getCurrentTime();
|
||||||
if (output) {
|
//输出
|
||||||
printf(maxNum < 100001 ? "2 " : "2\n");
|
if (output) {
|
||||||
for (int i = 3; i <= maxNum; i += 2) {
|
printf(maxNum < 100001 ? "2 " : "2\n");
|
||||||
if (buff[i >> 4] & (1 << ((i >> 1) & 7))) {
|
for (int i = 3; i <= maxNum; i += 2) {
|
||||||
printf(maxNum < 100001 ? "%d " : "%d\n", i);
|
if (buff[i >> 4] & (1 << ((i >> 1) & 7))) {
|
||||||
}
|
printf(maxNum < 100001 ? "%d " : "%d\n", i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("\n%u numbers\nusing time:%li us, %li ms\n",
|
}
|
||||||
getPrimeCount(buff, neededSize(maxNum)),
|
printf("\nmax number: %u, find %u prime numbers\nusing time: %li s %li ms %li us\n",
|
||||||
t2 - t1, (t2 - t1) / 1000);
|
maxNum, getPrimeCount(buff, neededSize(maxNum)),
|
||||||
free(buff);
|
(t2 - t1) / 1000 / 1000, (t2 - t1) / 1000 % 1000, (t2 - t1) % 1000);
|
||||||
return 0;
|
free(buff);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma clang diagnostic pop
|
#pragma clang diagnostic pop
|
27
time.h
Normal file
27
time.h
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
//
|
||||||
|
// Created by tursom on 2021/3/24.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef PRIME_NUMBERS_C_TIME_H
|
||||||
|
#define PRIME_NUMBERS_C_TIME_H
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <Windows.h>
|
||||||
|
long getCurrentTime() {
|
||||||
|
LARGE_INTEGER freq;
|
||||||
|
QueryPerformanceCounter(&freq);
|
||||||
|
return (long) freq.QuadPart / 10;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
|
||||||
|
#include <sys/time.h>
|
||||||
|
|
||||||
|
long getCurrentTime() {
|
||||||
|
struct timeval tv;
|
||||||
|
gettimeofday(&tv, NULL);
|
||||||
|
return tv.tv_sec * 1000 * 1000 + tv.tv_usec;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif //PRIME_NUMBERS_C_TIME_H
|
Loading…
Reference in New Issue
Block a user