首页 > 其他
第二十六篇 知识点总结
虽然不是周末,但是这次我有空就来整理并回顾一下这一周所学的知识。。。。     这一周,我主要学习到 了Java中的一些基础知识,其中包括:接口、类、抽象类、继承、构造函数、方法重写、方法重载、自动转型、多态、引用传递; 下面 ,我就来一一总结一下,首先 先谈一下接口,什么是接口?     Java接口 是一系列方法的声明,是一些方法特征的集合,一个接口只有方法的特征没有方法的实现,因此这些...
分类:其他   时间:2015-06-11 14:47:16    收藏:0  评论:0  赞:0  阅读:258
UI元素状态伪类选择器
E:hover   用于指定当鼠标指针移动到元素上面时元素所使用的样式; E:action  用于指定元素被激活(鼠标在元素上按下还没有松开)时所使用的样式; E:focus   用于指定元素获得光标焦点时所使用的样式,主要是在文本框空间获得焦点并进行文字输入时使用的样式; E:enable  设置该元素处于可用状态的样式; E:disabled  设置该元素处于不可用状态时的样式; E...
分类:其他   时间:2015-06-11 14:46:57    收藏:0  评论:0  赞:0  阅读:192
Leetcode[154]-Find Minimum in Rotated Sorted Array II
Follow up for "Find Minimum in Rotated Sorted Array": What if duplicates are allowed?Would this affect the run-time complexity? How and why? Suppose a sorted array is rotated at some pivot unknown to y...
分类:其他   时间:2015-06-11 14:46:46    收藏:0  评论:0  赞:0  阅读:292
解决在Azure SharePoint 2013 “在为项或数据源“FirstRSDS.rsds”加载模型时出现错误。请确认连接信息正确并且您有权访问该数据源。”
解决在Azure SharePoint 2013  “在为项或数据源“FirstRSDS.rsds”加载模型时出现错误。请确认连接信息正确并且您有权访问该数据源。” 错误抓图如下 错误描述 rsCannotRetrieveModel400在为项或数据源“FirstRSDS.rsds”加载模型时出现错误。请确认连接信息正确并且您有权访问该数据源。<HelpLink xmln...
分类:其他   时间:2015-06-11 14:46:36    收藏:0  评论:0  赞:0  阅读:373
Failed to import package with error: Couldn't decompress package
解压unitypackage的时候出错,原因是路径中包含中文字符,更改成英文路径即可。...
分类:其他   时间:2015-06-11 14:46:06    收藏:0  评论:0  赞:0  阅读:688
SPOJ 227 Ordering the Soldiers
As you are probably well aware, in Byteland it is always the military officer's main worry to order his soldiers on parade correctly. In Bitland ordering soldiers is not really such a problem. If a pl...
分类:其他   时间:2015-06-11 14:45:16    收藏:0  评论:0  赞:0  阅读:250
这六点帮你选对公司跳对槽!
网友@淡定姐:      通常HR都会把公司吹的很好,但是毕竟内部什么情况无从得知,那么,我们从哪些方面考察这个公司是不是就是自己的那盘菜呢?      热心网友@froms回复:      选工作可以考虑以下因素:      1、公司规模。是小公司,还是中等以上公司?个人目前情况适合什么样的公司?并不是小公司就一定不好,也并不是大公司就万事无忧。     ...
分类:其他   时间:2015-06-11 14:44:36    收藏:0  评论:0  赞:0  阅读:230
hadoop 配置history server 和timeline server
一,配置history server 1.配置history server,在etc/hadoop/mapred-site.xml中配置以下内容. mapreduce.jobhistory.address localhost:10020 mapreduce.jobhistory.webapp.address localhost:198...
分类:其他   时间:2015-06-11 14:44:26    收藏:0  评论:0  赞:0  阅读:998
LightOJ 1104 - Birthday Paradox【概率】
题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1104 题意:生日驳论,求最小满足条件的人数 代码:#include #include #include #include #include #include <math....
分类:其他   时间:2015-06-11 14:44:12    收藏:0  评论:0  赞:0  阅读:177
Leetcode[4]-Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).思路:先将两个数组合并,然后排序,最后找中位数中位数:若有n...
分类:其他   时间:2015-06-11 14:42:56    收藏:0  评论:0  赞:0  阅读:123
leetcode 27 -- Remove Element
Remove Element 题目: Given an array and a value, remove all instances of that value in place and return the new length. The order of elements can be changed. It doesn’t matter what you leave beyo...
分类:其他   时间:2015-06-11 14:42:30    收藏:0  评论:0  赞:0  阅读:133
Leetcode[74]-Search a 2D Matrix
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each row are sorted from left to right. The first integer of each row is...
分类:其他   时间:2015-06-11 14:42:30    收藏:0  评论:0  赞:0  阅读:300
RecycleBin
SQL> select * from v$version where rownum=1; BANNER -------------------------------------------------------------------------------- Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Prod...
分类:其他   时间:2015-06-11 14:42:06    收藏:0  评论:0  赞:0  阅读:213
leetcode 28 -- Implement strStr()
Implement strStr() 题目: mplement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. Update (2014-11-02): The signature of...
分类:其他   时间:2015-06-11 14:41:46    收藏:0  评论:0  赞:0  阅读:229
Supermap 组合单值专题图与标签专题图示例
Supermap专题图之单值专题图组合标签专题图...
分类:其他   时间:2015-06-11 14:40:46    收藏:0  评论:0  赞:0  阅读:244
POJ - 2060 Taxi Cab Scheme 二分图 最小路径覆盖
题目大意:有n项任务,给出每项任务的出发时间,出发地点和目的地。 当一个任务完成之后,如果 当前时间 + 到达另一个任务的出发地的时间 <= 另一个任务的出发时间 - 1 的话,那么就可以让这个人接下去完成这个任务了 问至少需要派多少人才可以完成任务解题思路:这题和 poj-3216 Repairing Company很像 两个点集都是任务,如果一个任务完成了可以接下来完成另一个任务的话,那么...
分类:其他   时间:2015-06-11 14:40:36    收藏:0  评论:0  赞:0  阅读:262
Leetcode[222]-Count Complete Tree Nodes
Given a complete binary tree, count the number of nodes.Definition of a complete binary tree from Wikipedia: In a complete binary tree every level, except possibly the last, is completely filled, and...
分类:其他   时间:2015-06-11 14:40:16    收藏:0  评论:0  赞:0  阅读:304
string对象操作以及stringstream
标准string对象支持长度可变的字符串操作。使用它需要包含头文件 ,它位于std命名空间下。1.string对象的定义和初始化string s1; //默认构造函数,s1为空串 string s2(s1); //将s2初始为s1的一个副本 string s3("value"); //将s3初始为一个字符串字面值的副本 string s4(n,'c'); //将s4初始为字符串'c'的n个副本需要...
分类:其他   时间:2015-06-11 14:40:06    收藏:0  评论:0  赞:0  阅读:249
XML基础知识学习
概念: XML 指可扩展标记语言 XML 是一种标记语言,很类似 HTML ,文本文件. XML 的设计宗旨是传输数据,而非显示数据 。存储和传输复杂的关系模型数据 XML 标签没有被预定义 使用约束的XML文档设计具有自我描述性。  XML 是 W3C 的推荐标准 XML语法: 一个XML文件分为如下几部分内容: 文档声明 元素:有开始有结束 属性 ...
分类:其他   时间:2015-06-11 14:39:56    收藏:0  评论:0  赞:0  阅读:307
阿里云CentOS中vsftp安装、配置、卸载
阿里云CentOS中vsftp安装、配置、卸载...
分类:其他   时间:2015-06-11 14:39:36    收藏:0  评论:0  赞:0  阅读:234
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!