摘要:
深度优先算法——走迷宫的实现 阅读全文
摘要:
C++实现对树的创建和前中后序遍历 阅读全文
摘要:
#include using namespace std;/* run this program using the console pauser or add your own getch, system("pause") or input loop */class SqString{privat... 阅读全文
摘要:
import java.io.DataInputStream;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.net.URL;public class Test { ... 阅读全文
摘要:
编写一个程序,统计data.txt文件的行数,并将所有行前加上行号后写到data1.txt文件中。算法提示:行与行之间以回车符分隔,而getline()函数以回车符作为终止符。因此,可以采用getline()函数读取每一行,再用一个变量i计算行数。(1)实现源代码#include#include#i... 阅读全文
摘要:
#includeint main(){char ku[16]={'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};int zh[32],i=0,w,j;long int b,y;printf("请输入一个十进制数,我能帮... 阅读全文