http://acm.hdu.edu.cn/showproblem.php?pid=2134 Problem Description Ice cream took a bronze medal in the Beijing match. Liu sir is very very happy. So ...
分类:
其他好文 时间:
2018-08-03 00:59:42
阅读次数:
151
A. Generate Login The preferred way to generate user login in Polygon is to concatenate a prefix of the user's first name and a prefix of their last n ...
分类:
其他好文 时间:
2018-08-02 22:53:56
阅读次数:
336
Springboot快速构建 1. 访问 2. 构建springboot项目,这里选择版本2.0.4 3. 单击Generate Project按钮下载springboot zip文件 简单的springmvc web 示例 + 导入web maven依赖 + 编写helloWorldControl ...
分类:
编程语言 时间:
2018-08-01 22:17:12
阅读次数:
136
一枚前端UI组件库 KUI for Vue 基于VUE 2.x 开发,在追求完美视觉体验的同时也保证了其性能高效。 欢迎批评、指正、吐槽、 "Star" 和 "捐助" 文档 Docs: "http://k ui.xyz" Blog: "http://chuchur.com" 特性 漂亮的UI,可定制 ...
分类:
其他好文 时间:
2018-08-01 12:08:53
阅读次数:
164
description [题面][1] solution 点分治+最小割。 点分必选的重心,再在树上dfs判交,转化为最大权闭合子图。 可以做$k$棵树的情况。 code cpp include include include include include include include defi ...
分类:
其他好文 时间:
2018-07-31 21:41:39
阅读次数:
155
EnableTaskWindows DisableTaskWindows 在Delphi中显示一个窗口有两种方式,模态方式显示(ShowModal)和非模态方式显示(Show),模态方式显示窗口时,必须在自身关闭后才能使父窗口起作用,但有时我们想要实现一个窗口,既要具有模态窗口的特性,但又要能从父窗... ...
引用一个匹配的类型 如没接口可以使用DAL相符合的类 用于接收返回实例 下面方法实现反射 public Idal ss() { Assembly ass = Assembly.Load("dal"); DAL类型 t = (DAL类型)ass.CreateInstance(assname + ".d ...
分类:
其他好文 时间:
2018-07-30 11:36:26
阅读次数:
139
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DAL { using System.Data.... ...
分类:
其他好文 时间:
2018-07-29 23:26:26
阅读次数:
185
public Pages<stuclass> GetStudetPage(PageParams pagePar) { int size = pagePar.PageSize; string sql = "[dbo].[p_paging]"; SqlParameter[] par = new SqlP ...
分类:
其他好文 时间:
2018-07-29 21:11:54
阅读次数:
147
public stuclass UPDA(int id) { SqlParameter[] par = new SqlParameter[] { new SqlParameter ("StuID",id) }; DataTable dt = DbHelperSQL.ExecuteDataTable( ...
分类:
其他好文 时间:
2018-07-29 21:10:44
阅读次数:
140