摘要:
折半查找仅适用于排序数组的情况 #include usingnamespace std; intBinarySearch(int* a,const int x,const int n); intmain(){ intx[]={1,2,3,4,5,6,7,8,9,10}; intre... 阅读全文
摘要:
原视频下载地址:https://yunpan.cn/cqUj6H9un37F2 访问密码 91af 阅读全文
摘要:
原视频下载地址:https://yunpan.cn/cqUfdgMPzyr5y 访问密码bb4f 阅读全文
摘要:
原视频下载地址:https://yunpan.cn/cLHD9ewat8v9a 访问密码 0f0f 阅读全文
摘要:
在c++编写正弦曲线点的代码,源代码如下: //想要使用内置的π,此句必不可少! #define_USE_MATH_DEFINES #include#include#include usingnamespace std; intmain(){ ofstreamout("1.txt"... 阅读全文
摘要:
Proc 过程名 参数列表 过程体 示例代码(斐波那契数列): proc fib{num} { if{$num<=2} {return 1} return[expr [fib [expr $num-1]] + [fib [expr $num-2]]]}for {set i 1}{$... 阅读全文
摘要:
for 开始 判断语句 变量自增(自检) 循环体示例代码:for {set i0} {$i<10} {incr i} { puts"I is: $i "}运行结果 While 判断语句 循环体示例代码:set x0while{$x<5} { setx [expr $x+$x+1] ... 阅读全文
摘要:
原视频下载地址:https://yunpan.cn/cqvgLe39ZU4Ke 访问密码 c1c9 阅读全文