码迷,mamicode.com
首页 > 2015年01月09日 > 全部分享
2015年1月9日XX大学XX学院考试题
复习 一、选择题 1.计算机算法指的是???????。 A.计算方法?????B.?排序方法????????C.?解决问题的步骤序列??????D.?调度方法 2.?下面关于算法说法正确的是(????) A.算法最...
分类:其他好文   时间:2015-01-09 01:55:51    阅读次数:329
第二次调用 Hadoop Java API
环境:Hadoop1.2. 例1:读取一个大约200k大小的本地文件,并将其第101-120字节的内容写入HDFS成为一个新文 import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org....
分类:编程语言   时间:2015-01-09 01:55:19    阅读次数:285
进入Android Dalvik虚拟机之Dalvik汇编语言基础
Dalvik虚拟机为自己专门设计了一套指令集,并且制定了自己的指令格式与调用规范。我们将Dalvik指令集组成的代码称为Dalvik汇编代码,将这种代码表示的语言称为Dalvik汇编语言(Dalvik汇编语言并不是正式的语言,只...
分类:移动开发   时间:2015-01-09 01:54:40    阅读次数:331
[LeetCode]133 Clone Graph
https://oj.leetcode.com/problems/clone-graph/http://blog.csdn.net/linhuanmars/article/details/22715747/** *Definitionforundirectedgraph. *classUndirectedGraphNode{ *intlabel; *List<UndirectedGraphNode>neighbors; *UndirectedGraphNode(intx){label=x;neig..
分类:其他好文   时间:2015-01-09 01:53:41    阅读次数:170
[LeetCode]134 Gas Station
https://oj.leetcode.com/problems/gas-station/http://blog.csdn.net/linhuanmars/article/details/22706553publicclassSolution{ publicintcanCompleteCircuit(int[]gas,int[]cost){ intlen=gas.length; //Costifrunallstations intallcost=0; //Startpoint intstart=0; ..
分类:其他好文   时间:2015-01-09 01:54:44    阅读次数:161
[LeetCode]140 Word Break II
https://oj.leetcode.com/problems/word-break-ii/http://blog.csdn.net/linhuanmars/article/details/22452163publicclassSolution{ publicList<String>wordBreak(Strings,Set<String>dict) { //SolutionA: //returnwordBreak_NP(s,dict); //SolutionB: return..
分类:其他好文   时间:2015-01-09 01:52:58    阅读次数:160
django 学习个人总结 之form表单提交
fromdjango.shortcutsimportrender_to_response fromdjangoimportforms fromdjango.httpimportHttpResponse classUserForm(forms.Form): name=forms.CharField() defregister(req): ifreq.method==‘POST‘: form_object=UserForm(req.POST) ifform_object.is_valid(): printfo..
分类:其他好文   时间:2015-01-09 01:52:51    阅读次数:156
Exchange 2013多租户托管PART 5:配置通讯簿策略
又有一段时间没有写东西了,今天给大家带来的是基于通讯簿策略来为不同租户分配相对应的通讯簿,包括脱机地址列表等。首先,我们需要安装通讯簿策略路由传输助理,可以通过ExchangeManagementShell来完成:Install-TransportAgent-Name"ABPRoutingAgent"-TransportAgentFactory..
分类:其他好文   时间:2015-01-09 01:53:30    阅读次数:200
[LeetCode]141 Linked List Cycle
https://oj.leetcode.com/problems/linked-list-cycle/http://blog.csdn.net/linhuanmars/article/details/21200601/** *Definitionforsingly-linkedlist. *classListNode{ *intval; *ListNodenext; *ListNode(intx){ *val=x; *next=null; *} *} */ publicclassSolution{ publi..
分类:其他好文   时间:2015-01-09 01:52:33    阅读次数:155
[LeetCode]142 Linked List Cycle II
https://oj.leetcode.com/problems/linked-list-cycle-ii/http://blog.csdn.net/linhuanmars/article/details/21260943/** *Definitionforsingly-linkedlist. *classListNode{ *intval; *ListNodenext; *ListNode(intx){ *val=x; *next=null; *} *} */ publicclassSolution{ pu..
分类:其他好文   时间:2015-01-09 01:51:33    阅读次数:173
《sqlserver学习笔记》(1)
基础知识:DDL(数据定义语言)createobject_namealterobject_namedropobject_nameDCL(数据控制语言)grant(授权)eg:grantselectondbo.Tstudenttopublicdeny(拒绝)eg:denyselect,updateonauthorstoMary,Johnrevoke(取消)DML(数据操纵语言)selectinsertupdatedelete@代表局部变量或..
分类:数据库   时间:2015-01-09 01:51:36    阅读次数:174
[LeetCode]143 Reorder List
https://oj.leetcode.com/problems/reorder-list/http://blog.csdn.net/linhuanmars/article/details/21503215/** *Definitionforsingly-linkedlist. *classListNode{ *intval; *ListNodenext; *ListNode(intx){ *val=x; *next=null; *} *} */ publicclassSolution{ publicvoid..
分类:其他好文   时间:2015-01-09 01:51:44    阅读次数:175
[LeetCode]144 Binary Tree Preorder Traversal
https://oj.leetcode.com/problems/binary-tree-preorder-traversal/http://blog.csdn.net/linhuanmars/article/details/21428647/** *Definitionforbinarytree *publicclassTreeNode{ *intval; *TreeNodeleft; *TreeNoderight; *TreeNode(intx){val=x;} *} */ publicclassSolu..
分类:其他好文   时间:2015-01-09 01:52:30    阅读次数:274
CentOS/RHEL7 源码安装Mysql5.5.22
本文以CentOS7为例,介绍mysql的源码安装!环境介绍:操作系统:CentOS7(安装时选择Gnome桌面及开发工具)软件:mysql5.5.22.tar.gz开始安装:安装前环境准备:yuminstallncursesncurses-develcmake1.创建mysql用户及组#groupaddmysql#useraddmysql-gmysql-s/sbin/nologin-r2...
分类:数据库   时间:2015-01-09 01:51:08    阅读次数:240
[LeetCode]146 LRU Cache
https://oj.leetcode.com/problems/lru-cache/http://blog.csdn.net/linhuanmars/article/details/21310633publicclassLRUCache{ publicLRUCache(intcapacity){ map=newHashMap<>(); head=null; tail=null; this.size=0; this.capacity=capacity; } publicintget(intke..
分类:系统相关   时间:2015-01-09 01:49:29    阅读次数:220
CentOS7 安装 phpMyAdmin
phpMyAdmin是一个以PHP为基础,以Web-Base方式架构在网站主机上的MySQL的 数据库管理工具,让管理者可用Web接口管理MySQL数据库。借由此Web接口可以成为一个简易方式输入繁杂SQL语法的较佳途径,尤其要处理大量资料 的汇入及汇出更为方便。其中一个更大的优势在于由于phpMyAdmi..
分类:Web程序   时间:2015-01-09 01:51:25    阅读次数:617
源码安装PHP
下载链接:http://php.net/downloads.phpphp-5.4.36.tar.gztarzxfphp-5.4.36.tar.gzcdphp-5.4.36./configure--prefix=/usr/local/php5.4--with-mysql=/usr/local/mysql--with-mysqli=/usr/bin/mysql_config--with-pdo-mysql=/usr/bin/mysql_config--with-openssl--enable-mbstr..
分类:Web程序   时间:2015-01-09 01:50:47    阅读次数:157
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!