自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 收藏
  • 关注

转载 C#socket通信

服务端 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using...

2017-12-20 15:41:00 120

转载 C#实现菜单栏中加载文件打开历史记录

主要功能:将用户上次打开过的文件记录添加到菜单栏中,方便用户直接单击打开文件 1.创建WinForm窗体应用程序 2.添加菜单栏控件 using System; using System.Collections.Generic; using System.ComponentModel; ...

2017-12-02 00:44:00 1143

转载 表达式求解

#define _CRT_SECURE_NO_WARNINGS //关闭安全检查,用于VS #include<stdio.h> #include<stdlib.h> #include<ctype.h> #include<string.h> #in...

2017-02-20 22:45:00 244

转载 括号匹配判别

#include<iostream> #include<string> #include<cstring> using namespace std; const int fdlth = 1024; typedef struct { char *bas...

2016-12-02 17:04:00 102

转载 双向循环链表

#include<iostream> #include<cmath> using namespace std; typedef struct node { int ratio;//系数 int index;//指数 struct node *n...

2016-11-29 09:45:00 71

转载 多项式加法

#include<iostream> #include<cmath> using namespace std; typedef struct node { int ratio;//系数 int index;//指数 struct node *n...

2016-11-29 09:36:00 91

转载 4*n魔方

#include<stdio.h> int main() { int num[100][100]={0}; int n,i,j,k=0,N=0; scanf("%d",&n); N=n*n+1; for(i=0;i<n;i...

2016-11-09 22:11:00 100

转载 奇数魔方c实现

#include<stdio.h> int main() { int n,i=0,j,k=1,num[100][100]={0}; scanf("%d",&n); j=n/2; num[i][j]=k; while(k<=n*...

2016-11-09 22:08:00 98

转载 链表的基本操做c++实现

#include<iostream> using namespace std; typedef struct node { int date; struct node *next; }lnode; void foundlnode(lnode *l)//创建链表 ...

2016-11-09 22:04:00 106

转载 复数的四则运算

#include<stdio.h> typedef struct { float a;//实部 float b;//虚部 }fus; void add(fus *e,fus *f,fus *g) { float a,b,c,d; a=...

2016-11-09 02:06:00 102

转载 求最小公倍数

/*从最大数开始依次加一*/ #include<stdio.h> int main() { long int a,b,i=0; scanf("%d %d",&a,&b); if(a>b) i=a; e...

2016-11-09 00:38:00 79

转载 顺序表的读写删修

#include<stdio.h> #include<stdlib.h> #define maxsize 100 typedef struct { int *date; int len; }sqlist; void initsqlist(sqlis...

2016-11-09 00:16:00 175

转载 链表的基本操作

#include<stdio.h> #include<stdlib.h> typedef struct node { int data; struct node *next; }lnode; void lenlnoded(lnode *l,int *n...

2016-11-09 00:12:00 205

空空如也

空空如也

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

TA关注的人

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