码迷,mamicode.com
首页 > 2014年07月02日 > 全部分享
001~003
ProjectEuler// 001 1 #include 2 3 using namespace std; 4 5 int main() 6 { 7 int sum = 0; 8 for (int i = 3; i 2 3 using namespace std; 4 ...
分类:其他好文   时间:2014-07-02 14:40:32    阅读次数:232
poj1033:Defragment
总时间限制: 2000ms 内存限制: 65536kB描述You are taking part in the development of a "New Generation" operating system and the NG file system. In this file system...
分类:其他好文   时间:2014-07-02 14:39:59    阅读次数:161
Hadoop学习常用的Linux命令
我们以RHEL6.3为例说明。Linux的命令后面会有命令选项,有的选项还有选项值。选项的前面有短横线“-”,命令、选项、选项值之间使用空格隔开。有的命令没有选项,会有参数。选项是命令内置的功能,参数是用户提供的符合命令格式的内容。1.1.1. 命令提示符在桌面上点击鼠标右键,在弹出菜单中选择“Op...
分类:系统相关   时间:2014-07-02 14:41:56    阅读次数:307
Oracle用户、授权、角色管理
(转自:http://blog.csdn.net/jojo52013145/article/details/6679678)创建和删除用户是Oracle用户管理中的常见操作,但这其中隐含了Oracle数据库系统 的系统权限与对象权限方面的知识。掌握还Oracle用户的授权操作和原理,可以有效提升我们...
分类:数据库   时间:2014-07-02 14:41:12    阅读次数:339
sql server 判断是否存在数据库,表,列,视图
原文:sql server 判断是否存在数据库,表,列,视图1 判断数据库是否存在if exists (select * from sys.databases where name = '数据库名')drop database [数据库名]2 判断表是否存在if exists (select * f...
分类:数据库   时间:2014-07-02 14:43:14    阅读次数:247
android 代码混淆示例
参考其它资料为项目代码做了一下混淆项目中使用了slidingmenu actionbarsherlock fastjson volley httpclient 等第三方库,并使用了 webview + js , 有微信和微博分享功能。# 指定代码的压缩级别-optimizationpasses 5....
分类:移动开发   时间:2014-07-02 14:42:33    阅读次数:278
MVC 路由模块分析(一)
概述主要分为四个部分进行分析。First ——Usage;then ——Extension;and then ——Design;last ——Test。1. Usage1.1 Display RouteData的值MVC针对每一个请求,都会将请求转化为一个RouteData对象,添加到全局路由表中。...
分类:Web程序   时间:2014-07-02 14:44:29    阅读次数:206
[DevExpress]设置RepositoryItemComboBox只可下拉选择不可编辑
原文:[DevExpress]设置RepositoryItemComboBox只可下拉选择不可编辑将TextEditStyle属性设置如下即可: 希望有所帮助!
分类:其他好文   时间:2014-07-02 14:43:51    阅读次数:605
MySql状态查看方法 MySql如何查看连接数和状态?
原文:MySql状态查看方法 MySql如何查看连接数和状态?如果是root帐号,你能看到所有用户的当前连接。如果是其它普通帐号,只能看到自己占用的连接怎么进入mysql命令行呢? mysql的安装目录下面有个bin目录,先用命令行进入该目录,然后用 mysql -uroot -p123456 来登...
分类:数据库   时间:2014-07-02 14:45:01    阅读次数:330
[leetcode] Restore IP Addresses
Given a string containing only digits, restore it by returning all possible valid IP address combinations.
分类:其他好文   时间:2014-07-02 14:45:41    阅读次数:220
[leetcode] Decode Ways
Given an encoded message containing digits, determine the total number of ways to decode it.
分类:其他好文   时间:2014-07-02 14:47:02    阅读次数:217
PatentTips - SNMP firewall
BACKGROUND OF THE INVENTION[0001] The present invention relates to communications and, more particularly, to systems and methods for exchanging small ...
分类:其他好文   时间:2014-07-02 14:46:26    阅读次数:302
[leetcode] Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.
分类:其他好文   时间:2014-07-02 14:47:43    阅读次数:253
Struts2零散笔记
Struts2-Action: 搭建MyEclipse框架,在Window/Prefrence中设置Server/Tomcat的目录,然后设置java选项卡中JDK的路径。Struts的运行机制: URL请求通过HTTP协议发送给TOMCAT(假设我们的url为http://localhost:80...
分类:其他好文   时间:2014-07-02 20:11:45    阅读次数:246
oracle DBA笔试题
Unix/Linux题目: 1、如何查看主机CPU、内存、IP和磁盘空间? cat /proc/cpuinfocat /proc/meminfoifconfig –afdisk –l2、你常用的进程管理、主机性能查看命令有哪些?ps –efiostat3、建立组DBA和改组下用户oracle,默认s...
分类:数据库   时间:2014-07-02 20:11:00    阅读次数:272
Red Hat Linux常用命令
1、查看机器型号 [root@local ~]# dmidecode | grep "Product Name" Product Name: VMware Virtual Platform Product Name: 440BX Desktop Reference Platform2、查询Linux...
分类:系统相关   时间:2014-07-02 20:12:21    阅读次数:310
Set Java Proxy for Http/Https
Command Line JVM SettingsThe proxy settings are given to the JVM via command line arguments:$> java -Dhttp.proxyHost=proxyhostURL -Dhttp.proxyPort=pro...
分类:编程语言   时间:2014-07-02 20:13:36    阅读次数:173
1530条   上一页 1 ... 39 40 41 42 43 44 45 ... 90 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!