码迷,mamicode.com
首页 >  
搜索关键字:kth element    ( 12439个结果
学习笔记11
目前正在专修CSS这一块,现在对内联元素和块元素进行深入的学习一下: 内联元素(inline element)一般都是基于语义级(semantic)的基本元素。内联元素只能容纳文本或者其他内联元素,常见内联元素"a"。 块元素(block element)和内联元素(inline eleme...
分类:其他好文   时间:2014-06-27 20:00:34    阅读次数:213
访问者模式之C++实现
#include"stdafx.h"#include#include#includeusingnamespacestd;classVisitor;classElement{protected:stringname;public:Element(stringname){this->name=name;...
分类:编程语言   时间:2014-06-27 17:09:36    阅读次数:200
[leetcode] Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
分类:其他好文   时间:2014-06-27 12:30:03    阅读次数:200
理解CSS Clip属性及用法
应用Clip属性实现的一个简单效果图:样式写法:.my-element{position:absolute;clip:rect(10px350px170px0);/*IE4toIE7*/clip:rect(10px,350px,170px,0);/*IE8+&otherbrowsers*/}属性解析...
分类:Web程序   时间:2014-06-27 10:56:22    阅读次数:763
angularjs 从外部改变controller内的数据
var appElement = document.querySelector('[ng-controller=seatsCtrl]');var $scope = angular.element(appElement).scope();$scope.$apply(function () { $sco...
分类:Web程序   时间:2014-06-26 20:12:05    阅读次数:551
提取新闻下一页
package com.unbank.robotspider.util;import java.util.HashMap;import java.util.Map;import org.jsoup.nodes.Document;import org.jsoup.nodes.Element;impor...
分类:其他好文   时间:2014-06-26 19:07:20    阅读次数:204
STL中排序算法的选择
?? 当大多数程序员需要对一组对象进行排序的时候,首先想到的一个算法是sort。sort是一个非常不错的算法,但它也并非在任何场合下都是完美无缺的。有时候我们并不需要一个完全的排序操作。比如说,如果我们有一个存放Widget的矢量,而我们希望将质量最好的20个Widget送给最重要的顾客,按照顾客的重要程度送上不同质量的Widget,那么只需要排序出前20个最好的Widget,其他的Widget...
分类:其他好文   时间:2014-06-26 14:10:39    阅读次数:185
LeetCode: Single Number [136]
【题目】 Given an array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without using extra memory? 【题意】 给定一个整数数组,其中除了一个数以外,其他数都是成对出现的,...
分类:其他好文   时间:2014-06-26 10:13:27    阅读次数:254
剑指offer (30) 最小的K个数
题目:输入n个整数,找出其中最小的K个数方法一:直接std::sort,T(n) = O(nlgn)方法二:直接std::nth_element T(n) = O(n) 但是修改了原数组void MinKth(std::vector& num, int kth, std::vector& resul...
分类:其他好文   时间:2014-06-25 12:35:07    阅读次数:216
Some useful methods about linkedList.
/** * Method 1: Delete the input element x  * and meanwhile keep the length of array after deleted n * @param a  the array * @param n  the length of array after deleted. * @param x  the element t...
分类:其他好文   时间:2014-06-25 08:27:27    阅读次数:171
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!