create or replace type type_str is table of varchar2(1000); SQL> declare 2 lens number default 0; 3 RS TYPE_STR := TYPE_STR(); 4 l_string clob:=to_clo ...
分类:
数据库 时间:
2018-10-15 20:33:19
阅读次数:
336
1 #include<reg52.h> 2 typedef unsigned char uint8; 3 typedef unsigned int uint16; 4 5 sbit rw=P2^5; 6 sbit rs=P2^6; 7 sbit e=P2^7; 8 sbit led=P3^7; 9 ...
分类:
编程语言 时间:
2018-10-14 14:08:45
阅读次数:
326
CSS颜色表示法和颜色表(调色板) 1、用颜色名表示 如:white、red、greenyellow、gold等。 2、用十六进制的颜色值表示(红、绿、蓝) #FF0000或者#F00 3、用rgb(r,g,b)函数表示 如:rgb(255,255,0) 4、用hsl(Hue,Saturation, ...
分类:
其他好文 时间:
2018-10-13 14:46:36
阅读次数:
198
1\ 本地设置: a.先配置好用户名和邮箱 git config --global user.name "user name" git config --global user.email "123456@qq.com" b.在设置本地的仓库 获取密匙SSH: 1\ ssh-keygen -t rs ...
分类:
其他好文 时间:
2018-10-11 23:39:51
阅读次数:
174
题目传送门 其实这题正解是AC自动机的,字符串哈希吸氧才能过的,但是我太菜了不会...只能先用哈希苟了。 在扫描单词的时候首先把各个单词的哈希值和长度存起来。然后按照长度从小到大将各单词排序。而那个长长的字符串呢,我们就把它一点一点往栈里塞,够最小长度单词的长度时,我们就比较下,这样反复下去。如果遇 ...
分类:
其他好文 时间:
2018-10-10 20:15:31
阅读次数:
153
【论文标题】CoupledCF: Learning Explicit and Implicit User-item Couplingsin Recommendation for Deep Collaborative Filtering (WWW '14 23rd WWW ) 【论文作者】Joons ...
分类:
编程语言 时间:
2018-10-09 18:12:12
阅读次数:
200
题目描述 原题来自:USACO 2015 Feb. Gold 有一个长度不超过 10510^5105 的字符串 SSS。Farmer John 希望在 SSS 中删掉 nnn 个屏蔽词(一个屏蔽词可能出现多次),这些词记为 t1~tnt_1\sim t_nt1?~tn?。 FJ 在 SSS 中从头开 ...
分类:
其他好文 时间:
2018-10-07 16:44:07
阅读次数:
235
第一篇博客,首先记录一下这一个多星期来的学习内容。 UART学习之路第一篇,是UART的基本概念介绍。后续会用STM32F407的串口与PC机通信。最后使用Verilog HDL写出串口发送模块和接收模块,完成仿真,在Zedboard板上完成通信。 首先先明确什么是UART,COM口,TTL,RS- ...
分类:
其他好文 时间:
2018-10-06 12:01:21
阅读次数:
783
先来看这道题: USACO 2011 Open Gold Mowing the Lawn 修剪草坪 After winning the annual town competition for best lawn a year ago, Farmer John has grown lazy; he h ...
分类:
其他好文 时间:
2018-10-05 21:56:06
阅读次数:
276
在接收值的jsp页面代码的body里添加: <%request.setCharacterEncoding("utf-8"); %> //这里是设置utf-8为jsp页面的中文编码方式 jsp页面之间传值: 发送信息的jsp脚本: session.setAttribute("user",rs.getS ...
分类:
Web程序 时间:
2018-10-05 17:23:29
阅读次数:
185