摘要:
本代码转载自:http://www.codeforge.cn/read/260028/keti_2d_b.c__html#include"udf.h"#define Rho 1002#define g 9.81#define s 2.65#define m 0.4#define d 0.000... 阅读全文
摘要:
原视频下载地址:https://yunpan.cn/cPfzaLzkcFXVK 访问密码62cf 阅读全文
摘要:
原视频下载地址:https://yunpan.cn/cqaQ2t5DrRcKa 访问密码d111 阅读全文
摘要:
本程序在VS2010及以上编译时可能会出现错误:error C4996:'std::_Copy_impl': Function call with parameters that may be unsafe- this call relies on the caller to check th... 阅读全文
摘要:
原视频下载地址: https://yunpan.cn/cqhsvXAKUQEA4 访问密码ef39 阅读全文
摘要:
本程序在VS2010及以上编译时可能会出现错误: error C4996:'std::_Copy_impl': Function call with parameters that may be unsafe- this call relies on the caller to check t... 阅读全文
摘要:
#include usingnamespace std; templatevoidQuickSort(T* a,const int left,const int right); intmain(){ intk[]={8,6,4,2,0,1,3,5,7,9,99}; //最后一个数无... 阅读全文
摘要:
原视频下载地址:https://yunpan.cn/cqp4AzMBXSVQr 访问密码c081 阅读全文
摘要:
#include usingnamespace std; voidInsertionSort(int* a,int n); intmain(){ intx[]={2,4,6,8,0,1,3,5,7,9}; InsertionSort(x,10); for(inti=0;i0&... 阅读全文
摘要:
#include usingnamespace std; voidPermutations(char* p,const int k,const int m); intmain(){ chars[]="abcd"; Permutations(s,0,3); return0;} ... 阅读全文