自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

左岸的博客

————————————————————————

  • 博客(5)
  • 资源 (4)
  • 收藏
  • 关注

原创 散列2 Hashing

散列2 Hashing#include<iostream>#include<cstdio>#include<string.h>#include<algorithm>using namespace std;#define N 100010#define M 100000int A[N]={0};int B[N]={0};bool isPrime(int n){ if(n < 2)

2017-11-21 15:41:21 225

原创 散列3 QQ帐户的申请与登陆

散列3 QQ帐户的申请与登陆#include<iostream>#include<cstdio>#include<string.h>using namespace std;#define N 100010#define M 100000struct QQ{ char Acnumber[15]; char Password[20]; int state;}A[

2017-11-19 17:29:03 399

原创 KMP

#include<stdio.h> #include<string.h>#define N 10010 void get_next(char s[], int next[]){ int j=1; next[1]=0; int k=0; while(j<strlen(s+1)) { if(k==0||s[j]==s[k])

2017-11-16 21:04:42 236

原创 冒泡排序and插入排序

#include<iostream> #include<algorithm> using namespace std;int A[100010]={0};int B[100010]={0};int Dubble_sort(int n){ int sum=0; for(int i=1;i<=n;i++) for(int j=i+1;j<=n;j++) {

2017-11-05 20:25:55 154

原创 10-排序6 Sort with Swap(0, i)

Sort with Swap(0, i)#include&lt;iostream&gt; #include&lt;algorithm&gt; using namespace std;int A[100010]={0};int judge(int n){ static int i=0; for(;i&lt;n;i++) { if(A[i]!=...

2017-11-05 13:10:38 280

MFC串口助手......

MFC 单片机 串口

2021-03-19

基于图像处理的微信跳一跳

利用ADB指令和Opencv进行微信跳一跳。

2020-02-13

TCP&UDP&串口通信助手

TUC通信助手,包括TCP服务器和客户端,UDP以及串口。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

2020-02-09

基于MFC的串口通信助手

带波形显示的串口通信助手,基于MFC开发,开发平台Win10+VS2019。相比传统的串口通信助手,增加了画布以显示数据变化。

2019-12-05

空空如也

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

TA关注的人

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