码迷,mamicode.com
首页 >  
搜索关键字:operations    ( 1397个结果
【DataStructure】The description and usage of Stack
A stack is collection that implements the last-in-first-out protocal.This means that the only access object in the collections is the last one thatwas inserted.The fundamental  operations of a stack a...
分类:其他好文   时间:2014-07-29 14:53:28    阅读次数:218
linux内核头文件 cdev.h 解析
#include #include #include struct file_operations; struct inode; struct module; struct cdev {         struct kobject kobj;         struct module *owner;         const struct file_opera...
分类:系统相关   时间:2014-07-29 14:18:28    阅读次数:280
LeetCode: LRU Cache
LeetCode: LRU CacheDesign and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set....
分类:其他好文   时间:2014-07-29 11:43:36    阅读次数:232
python with原理
在python2.5+中可以用with来保证关闭打开的文件with open('hello.txt') as f: do some file operations为什么要引入with呢?在之前如果要保证关闭文件需要这样:f = open('hello.txt')try: do some fi...
分类:编程语言   时间:2014-07-28 11:36:00    阅读次数:305
编程技巧之表格驱动编程
/* Image format-dependent operations. */typedef struct { jas_image_t *(*decode)(jas_stream_t *in, char *opts); /* Decode image data from a stream. */ ...
分类:其他好文   时间:2014-07-27 23:14:09    阅读次数:297
POJ 3414 Pots
Pots Description You are given two pots, having the volume of A and B liters respectively. The following operations can be performed: FILL(i)        fill the pot i (1 ≤ i ≤ 2) from the tap;DR...
分类:其他好文   时间:2014-07-26 15:04:00    阅读次数:263
LRU Cache leetcode java
题目:Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.get(key) - Get ....
分类:编程语言   时间:2014-07-26 09:53:37    阅读次数:402
微软职位内部推荐-Senior SDE for Windows App Experience
微软近期Open的职位:Job posting title: Senior Software Development EngineerLocation: China, BeijingDivision: Operations System Group Engineering Group Overvie...
分类:移动开发   时间:2014-07-24 14:47:25    阅读次数:300
微软职位内部推荐-Senior SDE for Win Shell Exp
微软近期Open的职位:Job posting title: Senior Software Development EngineerLocation: China, BeijingDivision: Operations System Group Engineering Group Overvie...
分类:Windows程序   时间:2014-07-24 09:57:53    阅读次数:306
微软职位内部推荐-Senior Software Development Engineer
微软近期Open的职位:Job posting title: Senior Software Development EngineerLocation: China, BeijingDivision: Operations System Group Engineering Group Overvie...
分类:其他好文   时间:2014-07-23 15:12:56    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!