码迷,mamicode.com
首页 > 2021年04月13日 > 全部分享
C. Add One
http://codeforces.com/contest/1513/problem/C dp $f[i][j]:$表示当前数位上为i(0~9), 加法次数为j最终形成的数位. f[i][j] = f[i - 1][j + 1]; f[9][j] = f[1][j + 1] + f[0][j + 1 ...
分类:其他好文   时间:2021-04-13 12:19:52    阅读次数:0
go面向对象3
类型断言 .(type) 来实现 其中 type 对应的就是要断言的类型 接口类型断言 var num1 Number = 1 var num2 Number2 = &num1 if num3,ok := num2.(Number1);ok { fmt.Println(num3.Equal(1)) ...
分类:其他好文   时间:2021-04-13 12:19:31    阅读次数:0
[Swagger]Unable to resolve service for type 'Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionGroupCollectionProvider' while attempting to activate
详细错误如下 System.AggregateException:“Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: Swashbuckl ...
分类:Windows程序   时间:2021-04-13 12:19:16    阅读次数:0
解决 antd select 下拉框不跟着页面滚动
在用 ant-designer 的 select 时候,有时候会发生下拉框没跟着页面滚动,这怎么办? ...
分类:其他好文   时间:2021-04-13 12:18:53    阅读次数:0
三角形的个数
题目描述 坤坤给你一个边长为n的等边三角形图形,请你查出图形内等边三角形的个数。 因为数据过大,所以要求答案对1e9+7取模。 如图是n=2的三角形阵列。我们可以看出有5个三角形。 请输出n为20210411时的三角形的个数。 输入描述: 无输入 输出描述: 直接输出 备注: 请直接打印答案即可。 ...
分类:其他好文   时间:2021-04-13 12:18:20    阅读次数:0
C strstr函数代码实现
int * Mystrstr(const char * str1, const char* str2) { char* p1 = NULL; char * p2 = NULL; char * cur = (char *)str1; if (*p2=='\0') { return cur; } whi ...
分类:其他好文   时间:2021-04-13 12:18:00    阅读次数:0
小测最后一题的连续因子的解题报告
7-84 连续因子 (20 分) 一个正整数 N 的因子中可能存在若干连续的数字。例如 630 可以分解为 3×5×6×7,其中 5、6、7 就是 3 个连续的数字。给定任一正整数 N,要求编写程序求出最长连续因子的个数,并输出最小的连续因子序列。 输入格式: 输入在一行中给出一个正整数 N(1<N ...
分类:其他好文   时间:2021-04-13 12:17:35    阅读次数:0
Restful API
package com.example.query; import java.io.Serializable; public class UserQuery implements Serializable { private Integer id; private String username; ...
分类:Windows程序   时间:2021-04-13 12:17:10    阅读次数:0
linux shell命令之非交互式Shell脚本
vi no_interaction_script1.sh #!/bin/bash #提示用户该脚本3秒后退出echo "This script will quit after 3 seconds. " #计时3s sleep 1echo -n "."sleep 1echo -n "."sleep 1 ...
分类:系统相关   时间:2021-04-13 12:16:49    阅读次数:0
2021 ICPC 昆明 M.Stone Games
答案是对着这段区间 [L,R] 不断询问直到不存在 x+1 得来的; 例如一个区间有为 1,2,4,4; 首先询问 1,发现存在 1,ans = 1; 然后询问 ans+1 = 2,发现存在 2,则 [1,3] 都能凑出,ans = 3; 接着询问 ans+1 = 4,发现存在两个 4,则 [1,1 ...
分类:其他好文   时间:2021-04-13 12:16:27    阅读次数:0
Golang Stream Api
package stream import ( "log" "reflect" "sort" ) type ( // a Stream is where one can drain data from Stream chan interface{} // buffer stream BufferSt ...
分类:Windows程序   时间:2021-04-13 12:15:56    阅读次数:0
c语言入门教程–-5判断语句
#include<stdio.h> int main() { int a=1; int b=1; if(a==b) { printf("相等"); } else { printf("不相等"); } return 0; } ...
分类:编程语言   时间:2021-04-13 12:15:37    阅读次数:0
关于Django中操作MySQL数据库常用语句
1、 https://blog.csdn.net/weixin_44014981/article/details/84888718 ...
分类:数据库   时间:2021-04-13 12:15:20    阅读次数:0
python3 抽象基类 abc.abstractmethod
原文地址:https://www.cnblogs.com/Andy963/p/7111467.html ...
分类:编程语言   时间:2021-04-13 12:15:03    阅读次数:0
【解决方案】5G+智慧交通时代来临,视频图像智能分析告警平台搭建智慧高速公路
一、背景分析 新基建加速推动5G与AI人工智能等技术迅猛发展,这为全国高速公路云联网提供了技术支撑。然而,由于高速公路视频监控网络涵盖的设施种类繁多,物联网终端个体抵挡黑客非法攻击的能力较弱,无法安装准入软件,因此极易存在伪造终端接入、木马注入、病毒注入等风险。另一方面,大部分高速公路都缺少视频终端 ...
分类:其他好文   时间:2021-04-13 12:14:45    阅读次数:0
mybatis--04--map和模糊扩展查询
...
分类:其他好文   时间:2021-04-13 12:14:24    阅读次数:0
1.PreparedStatement VS Statement
两者都是Sun公司定义的接口,PreparedStatement属于Statement的子接口。二者类似信使,向数据库中执行sql语句; Statement存在拼串的操作,比较繁琐;存在SQL注入问题。 PreparedStatement可以实现Blob字段的操作,通过其预编译SQL的方式,使用?占 ...
分类:其他好文   时间:2021-04-13 12:14:09    阅读次数:0
212条   上一页 1 ... 3 4 5 6 7 8 9 ... 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!