摘要: 二叉树的遍历分为前序遍历,中序遍历,后序遍历,层序遍历,在本文中,前三种由递归实现,层序遍历由队列实现。#include "stdio.h"#include "stdlib.h"#include "windows.h"typedef struct Node{ char dat... 阅读全文
posted @ 2016-03-06 20:17 RicardoMJiang 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 1 ftp1.1 ftp服务器 1.安装vsftpd服务器 sudo apt-get install vsftpd 2.配置vsftpd.conf文件 sudo vi /etc/vsftpd.conf 添加下面设置 anonymous_enable=YES anon_root=/h... 阅读全文
posted @ 2016-03-06 08:49 RicardoMJiang 阅读(130) 评论(0) 推荐(0) 编辑