码迷,mamicode.com
首页 >  
搜索关键字:note    ( 7358个结果
Multiply Strings
Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are non-nega...
分类:其他好文   时间:2014-10-05 20:05:58    阅读次数:208
4Sum_leetCode
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of target. Note: Elements ...
分类:其他好文   时间:2014-10-05 19:14:28    阅读次数:173
《Linux Device Drivers》第十一章 内核的数据类型——note
简介 由于Linux的多平台特性,任何一个重要的驱动程序都应该是可移植的与内核代码相关的核心问题是应该能够同时访问已知长度的数据项,并充分利用不同处理器的能力内核使用的数据类型主要被分成三类 类似int这样的标准C语言类型类似u32这样的有确定大小的类型像pid_t这样的用于特定内核对象的类型 本章将讨论在什么情况下使用这三种类型以及如何使用 使用标准C语言类型 当我们需要“...
分类:系统相关   时间:2014-10-05 16:25:48    阅读次数:308
《Linux Device Drivers》第十二章 PCI驱动程序——note
简介 本章给出一个高层总线架构的综述讨论重点是用于访问Peripheral Component Interconnect(PCI,外围设备互联)外设的内核函数PCI总线是内核中得到最好支持的总线本章主要介绍PCI驱动程序如果寻找其硬件和获得对它的访问本章也会介绍ISA总线 PCI接口 PCI是一组完整的规范,定义了计算机的各个不同部分之间应该如何交互PCI规范涵盖了与计算机接口相关的...
分类:系统相关   时间:2014-10-05 16:25:38    阅读次数:372
Note for video Machine Learning and Data Mining——Linear Model
Here is the note for lecture three.  the linear model Linear model is a basic and important model in machine learning. 1. input representation        The data we get usually needs some change...
分类:其他好文   时间:2014-10-04 23:14:57    阅读次数:390
042_翻转单词顺序
/* * Given an array of integers, every element appears three times except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without u...
分类:其他好文   时间:2014-10-04 17:45:36    阅读次数:163
leetcode Single Number II
/* * Given an array of integers, every element appears three times except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without u...
分类:其他好文   时间:2014-10-04 14:32:16    阅读次数:211
Subsets
Given a set of distinct integers, S, return all possible subsets. Note: Elements in a subset must be in non-descending order.The solution set must not contain duplicate subsets. For example, I...
分类:其他好文   时间:2014-10-03 22:24:55    阅读次数:273
Android事件监听(二)——点击鼠标事件
Button、ImageButton事件监听(setOnClickListener)方法一:通过匿名内部类实现代码如下:package com.note.demo2;import android.support.v7.app.ActionBarActivity;import android.os.B...
分类:移动开发   时间:2014-10-03 21:46:15    阅读次数:310
Appium基于安卓的各种FindElement的控件定位方法实践和建议
AppiumDriver的各种findElement方法的尝试,尝试的目标应用是SDK自带的Notepad应用。 1. findElementByName 1.1 示例 el = driver.findElementByName("Add note"); assertThat(el.getText(),equalTo("Add note")); ...
分类:移动开发   时间:2014-10-03 12:33:54    阅读次数:239
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!