自定义博客皮肤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)
  • 问答 (1)
  • 收藏
  • 关注

原创 C++ 实现微信跳一跳的外挂

需要安装手机驱动,用数据线连到电脑 需要安卓手机 需要控制台adb程序,并且把adb添加到path系统变量 代码如下:#include #include "atlimage.h" #include #include#include#define WIDTH (720/2)#define HEIGHT (1280/2)HDC hdc,memdc; //

2018-01-19 23:02:42 1551 1

原创 平衡二叉树

#pragma once#define VOID template\void AVItree::#define NODE template\typename AVItree::node* AVItree::#define max(a,b) (a)>(b)?(a):(b)#define tempRoot (*t)//平衡二叉树template class AVItree{

2017-12-18 11:31:55 165

原创 c/c++各种排序算法

//冒泡排序void bubble_sort(int *arr, int len){ for(int i=0;i<len-1;i++) for (int j = 0; j < len-i-1; j++) if (arr[j] > arr[j + 1]) { arr[j] ^= arr[j + 1]; arr[j + 1] ^= arr[j]; arr[

2017-12-10 16:38:35 201

原创 MyVector

#pragma once/* T*buff; //数组名unsigned int size; //容量unsigned int len; //数组长度*/template<class T>class MyVector{ size_t size;//容量 size_t l

2017-11-30 17:02:45 482

空空如也

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

TA关注的人

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