上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 54 下一页
摘要: #include <stdio.h>#include <stdlib.h> //定义单链表的结构typedef struct node { int data; struct node *next;}linklist; //建立单链表linklist *creatlist(){ linklist *h 阅读全文
posted @ 2019-09-26 09:51 bobo哥 阅读(451) 评论(0) 推荐(0)
摘要: 源程序: #include <iostream> #include <stack> using namespace std; typedef struct bitreenode { char data; struct bitreenode *lchild, *rchild; }*Bitree; // 阅读全文
posted @ 2019-08-28 13:32 bobo哥 阅读(2600) 评论(0) 推荐(0)
摘要: // // main.cpp // array_left_right // // Created by duanqibo on 2019/8/28. // Copyright © 2019年 duanqibo. All rights reserved. // 将数据中奇数靠左,偶数靠右 #inclu 阅读全文
posted @ 2019-08-28 13:23 bobo哥 阅读(556) 评论(0) 推荐(0)
摘要: Packet Tracer的基本应用 步骤1. 添加网络设备 Cisco Packet Tracer支持的设备类型有Router(路由器)、Switch(交换机)、Hub(集线器)、Wireless Device(无线设备)、Connection(连接线缆)、End Device(端点设备)、WAN 阅读全文
posted @ 2019-08-08 11:34 bobo哥 阅读(1909) 评论(0) 推荐(0)
摘要: #include <iostream>#include <stack> using namespace std; typedef struct bitreenode{ char data; struct bitreenode *lchild,*rchild;}*Bitree; //创建二叉树void 阅读全文
posted @ 2019-08-03 16:50 bobo哥 阅读(435) 评论(0) 推荐(0)
摘要: #include <stdio.h>#include <stdlib.h> //定义二叉树的结点typedef struct btnode{ char data; struct btnode *lchild,*rchild;}bitree,*Bitree; //队列结点的定义typedef stru 阅读全文
posted @ 2019-08-03 16:30 bobo哥 阅读(880) 评论(0) 推荐(0)
摘要: 这个小程序,只调用了第2个fun函数,没有调用第1个fun, 因为参数不一致 运行结果: 这是一道c++的考试题,不知道大家答对了吗? 阅读全文
posted @ 2019-07-18 20:11 bobo哥 阅读(305) 评论(0) 推荐(0)
摘要: wall命令 wall 是 write all的缩写 含义:凡是登录到ubuntu服务器的客户端,均可收到来自服务器的通知; 那么,ubuntu desktop是怎样登录到ubuntu server的呢? 当然用ssh登录 1. 在server端,安装:sudo apt install openss 阅读全文
posted @ 2019-07-18 19:46 bobo哥 阅读(1490) 评论(0) 推荐(0)
摘要: Ubuntu Desktop14.04 ,在window7 下的vmware14虚拟机中 cat /etc/network/interfaces 默认已经有lo: 系统给定的网络回环接口 eth0的配置(Ubuntu Desktop14.04) 1. cd /etc/network vim inte 阅读全文
posted @ 2019-07-18 19:24 bobo哥 阅读(17771) 评论(0) 推荐(1)
摘要: 1. 安装Apache2 sudo apt update sudo apt install apache2 2. 检查是否安装成功,命令: sudo systemctl status apache2 3. 如果发现安装不成功,不会显示 要删除旧版的apache服务,命令: sudo apt --pu 阅读全文
posted @ 2019-07-18 13:22 bobo哥 阅读(2809) 评论(0) 推荐(0)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 54 下一页