```csharp /// /// 清除文本中Html的标签 /// /// /// protected string ClearHtml(string Content) { Content = ReplaceHtml("&#[^>]*;", "", Content); Content = Repl... ...
分类:
Web程序 时间:
2019-12-23 13:20:23
阅读次数:
110
A Shuffle Hashing 把第二个串从头到尾扫一遍,挨个判断与第一个串长度一样的子串是否合法即可 B . A and B 找找规律,找到第一个前i个数之和大于a,b只差的i,再看看奇偶,讨论一下,+0/+1/+2 前100答案如下 详见代码: C Berry Jam 枚举左边剩几个,求右边 ...
分类:
其他好文 时间:
2019-12-22 21:45:09
阅读次数:
119
#include <stdio.h> #include <stdlib.h> const int N=5; typedef struct student { long no; char name[20]; int score; }STU; void input(STU s[], int n); in ...
分类:
其他好文 时间:
2019-12-22 20:22:29
阅读次数:
96
#include <stdio.h> #include <stdlib.h> const int N=5; // 定义结构体类型struct student,并定义STU为其别名 typedef struct student { long no; char name[20]; int score; ...
分类:
其他好文 时间:
2019-12-22 14:55:46
阅读次数:
92
一、主要代码 #include<stdio.h> #include<stdlib.h> #include<string.h> struct student{//结构定义 char name[20]; char num[10]; char sex[10]; char clas[20]; char sc ...
分类:
编程语言 时间:
2019-12-21 23:01:23
阅读次数:
110
1.LeNet LeNet是指LeNet-5,它是第一个成功应用于数字识别的卷积神经网络。在MNIST数据集上,可以达到99.2%的准确率。LeNet-5模型总共有7层,包括两个卷积层,两个池化层,两个全连接层和一个输出层。 import torch import torch.nn as nn fr ...
分类:
其他好文 时间:
2019-12-20 12:16:20
阅读次数:
121
一级标题 二级标题 三级标题 https://github.com/BNDong/Cnbloge/Cnblogs-Theme-SimpleMemory/issues/30 ...
分类:
其他好文 时间:
2019-12-20 11:44:55
阅读次数:
99
1.建一个app.js文件 const http = require('http'); const chalk = require('chalk'); const conf = require('./config/defaultConfig') const server = http.createS ...
分类:
其他好文 时间:
2019-12-19 16:31:13
阅读次数:
101
1.yum添加epel源 1 yum install epel-release 1 yum install epel-release 1 yum install epel-release 1 yum install epel-release yum install epel-release 2.安装 ...
分类:
其他好文 时间:
2019-12-18 12:54:19
阅读次数:
106
爬取国家药品监督管理总局中基于中华人民共和国化妆品生产许可证相关数据 import requests from fake_useragent import UserAgent ua = UserAgent(use_cache_server=False,verify_ssl=False).random ...
分类:
编程语言 时间:
2019-12-15 20:22:22
阅读次数:
137