码迷,mamicode.com
首页 >  
搜索关键字:HERE    ( 6715个结果
HTML学习06- 快速参考
来自 W3School 的 HTML 快速参考。可以打印它,以备日常使用。 HTML Basic Document <html> <head> <title>Document name goes here</title> </head> <body> Visible text goes here < ...
分类:Web程序   时间:2021-05-25 18:41:32    阅读次数:0
impdp 导出导入注意事项
finchina用户登录财汇数据库: 1.备份财汇数据库(finchina) 登陆Oracle服务器端: (1)在操作系统上建立真实目录(注意当前路径有足够大的存储空间) mkdir -p /oracle/db/20210430 echo $ORACLE_SID sqlplus / as sysdb ...
分类:其他好文   时间:2021-05-25 18:12:10    阅读次数:0
mysql select into方式导入导出
前提条件是要设置secure_file_priv,该参数是需要重启实例的 mysql> show variables like '%secure%';+ + +| Variable_name | Value |+ + +| require_secure_transport | OFF || secu ...
分类:数据库   时间:2021-05-24 17:05:50    阅读次数:0
《史蒂夫·乔布斯传》
Here’s to the crazy ones. The misfits. The rebels. The troublemakers. The round pegs in the square holes. The ones who see things differently. They’re ...
分类:其他好文   时间:2021-05-24 16:46:31    阅读次数:0
AZ303-AZURE STORAGE ACCOUNT
An Azure storage account contains all of your Azure Storage data objects: blobs, file shares, queues, tables, and disks. The storage account provides ...
分类:其他好文   时间:2021-05-24 14:07:40    阅读次数:0
leetcode 232 用栈实现队列
简介 使用队列实现队列哈哈. code class MyQueue { public: queue<int> q; public: /** Initialize your data structure here. */ MyQueue() { } /** Push element x to the ...
分类:其他好文   时间:2021-05-24 13:17:52    阅读次数:0
【每日一题】27. 过河 (DP + 离散化)
补题链接:Here 算法涉及:DP + 离散化 \(l\) 的范围太大,无法作为数组下标,所以先离散化,再DP。两点间的距离d大于t时,一定可以由 \(d\ \%\ t\) 跳过来,所以最多只需要t+d%t种距离的状态就可以表示这两个石子之间的任意距离关系。这样就把题目中的 \(10^9\) 压缩成 ...
分类:其他好文   时间:2021-05-24 12:38:52    阅读次数:0
mybatis的注解开发
准备的model: 1 public class User implements Serializable{ 2 private Integer id; 3 private String name; 4 5 //保存一对多查询结果 6 private List<Account> accounts; ...
分类:其他好文   时间:2021-05-24 10:31:57    阅读次数:0
Unit4 Talking about your TV viewing habits
##General English:7 ###Unit4 Talking about your TV viewing habits ###Vocabulary documentary a television documentary about/on the future of nuclear po ...
分类:Windows程序   时间:2021-05-24 09:58:59    阅读次数:0
【每日一题】25.「火」皇家烈焰 (字符串DP)
补题链接:Here 转移方程的具体含义我在代码注释里写出来了, 很好理解 这道题的难点在于如何表示状态, 一旦找到状态表示方法 只要根据题意做转移就行了 最后的答案就是 \(dp[n][0][0] + dp[n][1][0]\) 即最后一个位置有火的方案数加上最后一个位置没有火的方案数 注意不要忘了 ...
分类:其他好文   时间:2021-05-24 08:32:39    阅读次数:0
6715条   上一页 1 ... 4 5 6 7 8 ... 672 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!