码迷,mamicode.com
首页 >  
搜索关键字:write    ( 14678个结果
V4L2文档翻译(十二)
http://linuxtv.org/downloads/v4l-dvb-apis/io.html 第三节:输入和输出 V4L2 API定义了一些不同的方法来从设备读取或写入,所有需要与应用程序交换数据的驱动最少必须支持其中之一。 在打开一个V4L2设备后会自动选择使用经典的I/O方法read()和write(),当驱动不支持写或读时会失败。 其他的方法必须通过协商。应用程序通...
分类:其他好文   时间:2014-05-07 05:13:15    阅读次数:417
CareerCup之1.2C风格字符串翻转
原文: Write code to reverse a C-Style String. (C-String means that “abcd” is represented as five characters, including the null character.) 译文: 写代码翻转一个C风格的字符串。(C风格的意思是"abcd"需要用5个字符来表示,包含末尾的 结束字符)...
分类:其他好文   时间:2014-05-07 05:12:34    阅读次数:265
Cracking the coding interview
CareerCup 目录 Chapter 1 | Arrays and Strings 1.1  Implement an algorithm to determine if a string has all unique characters. What if you can not use additional data structures? 1.2 Write co...
分类:其他好文   时间:2014-05-07 04:25:44    阅读次数:320
[codility]Triangle
最近在学scala语言,scala代码如下: import scala.collection.JavaConversions._ object Solution { def solution(A: Array[Int]): Int = { // write your code in Scala 2.10 // sort scala.uti...
分类:其他好文   时间:2014-05-07 04:20:38    阅读次数:352
android 读写文件示例
代码中的两个按钮处理事件,分别进行了文本的读写操作。 1)文件写操作 首先调用Activity的openFileOutPut()方法获得文本文件的输出流,第一个参数为文本文件的名字,第二个为文件的打开方式 接着调用Outputstream对象的write()方法将Textview中获得文本信息写入outputstream对象,最后调用close()方法完成写入操作。 2)文件读操作 首先调用Activity的openFileInPut()方法获得文本文件的输入流, 接着...
分类:移动开发   时间:2014-05-07 03:15:13    阅读次数:464
APUE 学习笔记(四) 标准I/O库
1.流与FILE对象unix I/O系统调用都是针对文件描述符的标准C的I/O函数都是针对流(文件指针)的,我们使用一个流与一个文件相关联2.缓冲标准I/O库提供缓冲的目的就是尽可能减少read和write系统调用的使用次数标准I/O提供三种类型的缓冲:(1) 全缓冲:在填满标准I/O缓冲区后才进行...
分类:其他好文   时间:2014-05-07 01:35:27    阅读次数:321
写时拷贝(copy-on-write) COW技术
写时拷贝(copy-on-write) COW技术...
分类:其他好文   时间:2014-05-06 23:42:43    阅读次数:270
CareerCup之1.4判断字符串是否为变位词
【题目】 原文: 1.4 Write a method to decide if two strings are anagrams or not. 译文: 写一个函数判断两个字符串是否是变位词。 【分析】 变位词(anagrams)指的是组成两个单词的字符相同,但位置不同的单词。比如说, abbcd和abcdb就是一对变位词。该题目有两种思路: 【思路一】 由于变位词只是字...
分类:其他好文   时间:2014-05-06 23:17:56    阅读次数:383
codechef Correctness of Knight Move题解
Chef develops his own computer program for playing chess. He is at the very beginning. At first he needs to write the module that will receive moves written by the players and analyze it. The module w...
分类:其他好文   时间:2014-05-06 23:11:26    阅读次数:497
[简明python教程]学习笔记2014-05-05
今天学习了python的输入输出、异常处理和python标准库1.文件通过创建一个file类的对象去处理文件,方法有read、readline、write、close等[root@reed0505]#catusing_file.py #!/usr/bin/python #filename:using_file.py poem=‘‘‘Programingisfun whentheworkisdone usePython!..
分类:编程语言   时间:2014-05-06 17:05:03    阅读次数:448
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!