自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (8)
  • 收藏
  • 关注

原创 TCP send笔记

1、阻塞模式下,发送缓冲区满,send会一直等待,直到数据发送出去;2、非阻塞模式下,发送缓冲器满,send会返回错误信息,应用程序需要自行处理。

2018-03-24 10:01:41 222

原创 快速排序算法

#include <iostream>#include <ctime>int Partition(int a[], int low, int high) { int key = a[low]; int l = low, h = high; while(l < h) { while(h > l && a[h] &gt...

2018-03-15 08:22:48 136

原创 直接插入排序

void StraightInsertSort(int[] a, int n) { for(int i = 1; i < n; ++i) { int key = a[i], j = i-1; while(j >= 0 && a[j] > key) { a[j+1] = a[j]; j--; ...

2018-03-14 16:15:46 123

转载 windows消息机制要点

Windows消息机制要点1. 窗口过程     每个窗口会有一个称为窗口过程的回调函数(WndProc),它带有四个参数,分别为:窗口句柄(Window Handle),消息ID(Message ID),和两个消息参数(wParam, lParam), 当窗口收到消息时系统就会调用此窗口过程来处理消息。(所以叫回调函数) 2 消息类型 1) 系统定义消息(System-D...

2018-03-04 10:00:29 255

YUV格式详解,主要介绍YUV采样、内存分布等相关基础知识

YUV格式详解,主要介绍YUV采样、内存分布等相关基础知识.

2023-03-26

java_ee_sdk-8u1.zip java ee 8 sdk 解压后重新压缩的

java ee 8 sdk, 解压后重新压缩的,企业开发必备

2022-09-18

java-ee-sdk-8u1.zip java ee 8 sdk 解压后重新压缩的

java ee 8 sdk, 解压后重新压缩的,企业开发必备

2022-09-18

java_ee_sdk_8u1_web.zip 解压重新打包的,网上的资源太贵了

java_ee_sdk_8u1_web.zip 解压重新打包的,网上的资源太贵了

2022-09-17

RTMP 协议 ,官方 英文版本

Adobe 官方的 RTMP 协议 英文版本

2022-06-05

系统架构师20009-2018历年真题.zip

自己整理的系统架构师2009-2018年历年真题,是从希赛网站下载下来的pdf

2019-07-07

mysql 8.0 reference manual

mysql 8.0 reference manual 官方pdf转的mobi格式,专门用在kindle上,转了好几个小时才转完的,高清,有目录

2018-12-24

Beej's Guide to Network Programming Using Internet Sockets

Hey! Socket programming got you down? Is this stuff just a little too difficult to figure out from the man pages? You want to do cool Internet programming, but you don't have time to wade through a gob of structs trying to figure out if you have to call bind() before you connect(), etc., etc. Well, guess what! I've already done this nasty business, and I'm dying to share the information with everyone! You've come to the right place. This document should give the average competent C programmer the edge s/he needs to get a grip on this networking noise.

2018-10-28

Introduction to Sockets Programming in C using TCP/IP

网络编程流程,需要考虑的问题,socket编程基础知识。

2018-10-28

startuml linux x64

startuml linux x64, 无限期使用,UML 画图工具

2018-08-10

learning qgis(3rd)

learning qgis 3rd ,学习qgis的好材料,英文版,清晰,有目录。

2018-04-28

dui designer

dui designer unicode 版本,在网上下的好多都有问题,自己编译的

2017-10-30

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除