C/C++
hello_wcx
我很酷,不信算了
展开
-
C++实现常见排序算法
1、冒泡排序void bubble_sort(int arr[], int len){ //没有排序完毕 bool flag = true; for(int i = 0; i < len && flag; i++) { //认为已经有序了 flag = false; for(int j = l...原创 2019-10-23 11:05:20 · 183 阅读 · 0 评论 -
Qt/C++中引用.c文件中函数出现的问题
Qt/C++中引用.c文件中函数出现的问题原创 2017-06-22 10:19:42 · 5301 阅读 · 0 评论 -
linux下动态库配置问题
在开发过程中经常遇到无法找到动态库当执行:# ldd + 可执行文件是 (如:ldd a.out)会报不到库,解决办法是将库所在的路劲写到 /etc/ld.so.conf 文件里,然后执行sudo ldconfig -v 刷新就可以了原创 2017-12-05 23:30:22 · 480 阅读 · 0 评论 -
用libuv库实现管道进程间通信
本实例利用了libuv库中的pipe管道实现进程通信,类似与本地套接字。客户端连接服务器端建立连接后相互发送数据服务端:文件LocalServer.h#pragma once#include #include #include #include #include #include #include #include using namespace std;原创 2017-12-28 17:29:32 · 4815 阅读 · 3 评论