上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 165 下一页
摘要: 题目地址:HDU 1171 还是水题。。普通的01背包。注意数组要开大点啊。。。。 代码例如以下: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #incl 阅读全文
posted @ 2017-07-04 13:28 brucemengbm 阅读(147) 评论(0) 推荐(0)
摘要: 题外话 这款插件就比較重量级了….用熟悉了写原生JS的效率要提升非常多……并且,不仅支持JS还包括了nodejs snippet javascript-snippets 插件作者: zenorocha Github地址 : https://github.com/zenorocha/atom-java 阅读全文
posted @ 2017-07-04 12:35 brucemengbm 阅读(710) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int partition(int *a,int p,int r) { int x=a[r]; int i=p-1;//note i important which is used for //storage the 阅读全文
posted @ 2017-07-04 10:55 brucemengbm 阅读(198) 评论(0) 推荐(0)
摘要: StringUtil(视个人须要进行加入) public class StringUtil { public static boolean isMail(String string) { if (null != string) { if (string.matches("^([a-z0-9A-Z]+ 阅读全文
posted @ 2017-07-04 10:20 brucemengbm 阅读(172) 评论(0) 推荐(0)
摘要: <a href="dsfjlsdjf" onclick="testGet()"> 请教编写testGet()函数获取这个超链接href属性,限制例如以下不能用 document.getElementById(); document.getElementsByName(); document.getE 阅读全文
posted @ 2017-07-04 09:17 brucemengbm 阅读(541) 评论(0) 推荐(0)
摘要: 1、什么是进程(Process)和线程(Thread)?有何差别? 进程是具有一定独立功能的程序关于某个数据集合上的一次执行活动。进程是系统进行资源分配和调度的一个独立单位。线程是进程的一个实体,是CPU调度和分派的基本单位。它是比进程更小的能独立执行的基本单位。线程自己基本上不拥有系统资源。仅仅拥 阅读全文
posted @ 2017-07-03 21:57 brucemengbm 阅读(387) 评论(0) 推荐(0)
摘要: ps:写这篇文章的目的是尝试下新的markdown编辑器哈哈 简单介绍 ORMLite provides a lightweight Object Relational Mapping between Java classes and SQL databases. There are certain 阅读全文
posted @ 2017-07-03 20:55 brucemengbm 阅读(413) 评论(0) 推荐(0)
摘要: 写在前面 假设你明白清晰知道需求规格说明书是什么。则能够忽略此文章。假设你不清晰。建议还是阅读一下本文,不然或许早晚会碰钉子。 转载请标明出处: http://blog.csdn.net/ouyida3/article/details/47683191 本文出自:【ouyida3的博客】 起因 近期 阅读全文
posted @ 2017-07-03 19:46 brucemengbm 阅读(2432) 评论(0) 推荐(0)
摘要: 【apache配置禁止訪问】 1. 禁止訪问某些文件/文件夹 添加Files选项来控制,比方要不同意訪问 .inc 扩展名的文件,保护php类库: <Files ~ "\.inc$"> Order allow,deny Deny from all </Files> 禁止訪问某些指定的文件夹:(能够用 阅读全文
posted @ 2017-07-03 18:22 brucemengbm 阅读(414) 评论(0) 推荐(0)
摘要: 1、查询表中反复数据。select * from people where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1) 2、删除表中多余的反复记录,反复记录是依据单个字段 阅读全文
posted @ 2017-07-03 16:43 brucemengbm 阅读(132) 评论(0) 推荐(0)
上一页 1 ··· 52 53 54 55 56 57 58 59 60 ··· 165 下一页