logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

常用排序算法

1.插入排序void InsertSort_fix(int L[], int length){    int i;//区分有序区和无序区指针    int j;//有序区插入排序临时下标    int tmp;//存储待排序元素        if (NULL == L)    {        return;    }    for(i=0;i

#排序算法
c++调用python详解(多输入多输出)

//初始化python解释器Py_Initialize();if ( !Py_IsInitialized() ) {return false;}//开始使用PyRun_SimpleString 运行python语句, 设置被调用的python脚本的全路径PyRun_SimpleString("import sys");PyRun_SimpleString("sys.path.a

#c++#python
到底了