全部评论 6

  • #include <cstdlib>
    #define __Pyx_sst_abs(value) std::abs(value)
    #elif SIZEOF_INT >= SIZEOF_SIZE_T
    #define __Pyx_sst_abs(value) abs(value)
    #elif SIZEOF_LONG >= SIZEOF_SIZE_T
    #define __Pyx_sst_abs(value) labs(value)
    #elif defined (_MSC_VER)
    #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value))
    #elif defined (STDC_VERSION) && STDC_VERSION >= 199901L
    #define __Pyx_sst_abs(value) llabs(value)
    #elif defined (GNUC)
    #define __Pyx_sst_abs(value) __builtin_llabs(value)
    #else
    #define __Pyx_sst_abs(value) ((value<0) ? -value : value)
    #endif
    #define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s))
    #define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l)
    #define __Pyx_PyBytes_FromString PyBytes_FromString
    #define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize
    #if PY_MAJOR_VERSION < 3
    #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString
    #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize
    #else
    #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString
    #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize
    #endif
    #define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s))
    #define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s))
    #define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s))
    #define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s))
    #define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s))
    #define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s))
    #define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s))
    #define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s))
    #define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s))
    #define _

    1周前 来自 广东

    0
  • #define CYTHON_ABI "0_27_3"
    #define CYTHON_FUTURE_DIVISION 0
    #include<iostream>//数据流输入/输出
    #include<istream>//数据流输入
    #include<ostream>//数据流输出
    #include<algorithm>//STL 通用算法
    #include<bitset>//STL 位集容器
    #include<cctype>//字符处理
    #include<cerrno>//定义错误码
    #include<cfloat>//浮点数处理
    #include<ciso646>//对应各种运算符的宏
    #include<climits>//定义各种数据类型最值的常量
    #include<clocale>//定义本地化函数
    #include<cmath>//定义数学函数
    #include<complex>//复数类
    #include<csignal>//信号机制支持
    #include<csetjmp>//异常处理支持
    #include<cstdarg>//不定参数列表支持
    #include<cstddef>//常用常量
    #include<cstdio>//定义输入/输出函数
    #include<cstdlib>//定义杂项函数及内存分配函数
    #include<cstring>//字符串处理
    #include<ctime>//定义关于时间的函数
    #include<cwchar>//宽字符处理及输入/输出
    #include<cwctype>//宽字符分类
    #include<deque>//STL 双端队列容器
    #include<exception>//异常处理类
    #include<fstream>//文件输入/输出
    #include<functional>//STL 定义运算函数(代替运算符)
    #include<limits>//定义各种数据类型最值常量
    #include<list>//STL 线性列表容器
    #include<locale>//本地化特定信息
    #include<map>//STL 映射容器
    #include<memory>//STL通过分配器进行的内存分配
    #include<new>//动态内存分配
    #include<numeric>//STL常用的数字操作
    #include<iomanip>//参数化输入/输出
    #include<ios>//基本输入/输出支持
    #include<iosfwd>//输入/输出系统使用的前置声明
    #include<iterator>//STL迭代器
    #include<queue>//STL 队列容器
    #include<set>//STL 集合容器
    #include<sstream>//基于字符串的流
    #include<stack>//STL 堆栈容器
    #include<stdexcept>//标准异常类
    #include<streambuf>//底层输入/输出支持
    #include<string>//字符串类
    #include<typeinfo>//运行期间类型信息
    #include<utility>//STL 通用模板类
    #include<valarray>//对包含值的数组的操作
    #include<vector>//STL 动态数组容器
    #include<bits/stdc++.h>//万能头文件
    #include<atomic>//对原子操作的支持
    #include<thread>//线程支持
    #include<mutex>//互斥锁
    #include<condition_variable>//条件变量
    #include<future>//异步操作
    #include<shared_mutex>//共享互斥锁
    #include<thread>//线程支持
    #include<chrono>//时间库
    #include<random>//随机数生成器
    #include<codecvt>//字符编码转换
    #include<regex>//正则表达式
    #include<tuple>//元组
    #include<array>//了固定大小数组
    #include<forward_list>//单向链表
    #include<unordered_set>//无序集合
    #include<unordered_map>//无序映射
    #include<filesystem>//文件系统操作
    #ifndef offsetof
    #define offsetof(type, member) ( (size_t) & ((type*)0) -> member )
    #endif
    #if !defined(WIN32) && !define

    1周前 来自 广东

    0
  • d=====( ̄▽ ̄*)b

    1周前 来自 浙江

    0
  • 逆天,实在逆天

    1周前 来自 上海

    0
  • d

    2025-02-22 来自 上海

    0
  • d

    2025-02-22 来自 上海

    0

热门讨论