C
Hammer_to_fall
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Linux下的简易聊天室
之前基于socket套接字完成的一个linux下的简易聊天室,数据库使用的是sqlite,可实现私聊,多人在公屏群聊,更改密码功能。原创 2018-07-24 15:20:27 · 4674 阅读 · 5 评论 -
单链表的创建、测长、打印、插入、排序、逆置
#include <iostream> #include <stdio.h> #include <conio.h> #include <string> using namespace std; typedef struct qwer { int data; struct qwer *next; }node; node *creat(int n...原创 2018-08-12 11:09:20 · 353 阅读 · 0 评论
分享