C语言实现托尔集cantor set 康托尔集 _cantor_set结构体 实现了以下几个接口 康托尔集cantor set完整源码(定义,实现,main函数测试) 康托尔集 _cantor_set结构体 typedef struct _cantor_set { double start; /**< start of interval */ double end; /**< end of interval */ struct _cantor_set *next; /**< pointer to next set */ <