代码搜索:生成工具

找到约 10,000 项符合「生成工具」的源代码

代码结果 10,000
www.eeworm.com/read/120217/14809599

cpp 组合生成(int).cpp

//全排列生成 #include #define n 9 #define true 1 #define false 0 int s[n],ans[n],count=0; int used[n]={0}; void solve(int dep,int r) { int i,j=dep; if(dep==r+1) //找到一个组合 { f
www.eeworm.com/read/120213/14809610

cpp 排列生成(stl).cpp

#include #include #include //#include using namespace std; const int MAX_N = 20; int main() { int i, n,// A[MAX_N]={3,2,1,5,4}; //给次数组赋值,控制输出对象(
www.eeworm.com/read/218451/14919688

txt 生成mif.txt

========================正弦波======================== index = linspace(0,pi/2,2^6); %将0到pi/2平均分成2^6份 sine_value = sin(index); % 生成2^6个值 sine_valu
www.eeworm.com/read/116685/14959101

bat 生成bin.bat

del ARMuCOS.bin fromelf -nodebug Debug/ARMuCOS.axf -bin ARMuCOS.bin