码迷,mamicode.com
首页 >  
搜索关键字:line    ( 28191个结果
MSSQL附加数据库5120错误(拒绝访问)处理方法
MSSQL附加数据库时提示以下错误:无法打开物理文件“***.mdf”。操作系统错误 5:“5(拒绝访问。)”。 (Microsoft SQL Server,错误: 5120)该经验介绍如何处理该报错,而后成功附加数据库。添加Authenticated Users用户名。为Authenticated...
分类:数据库   时间:2014-07-19 22:00:05    阅读次数:264
抽象类与抽象方法
抽象类为基类:abstract class Animal { string name; public string Name { get { return name; } set { name = value; } } char gender; public char Gender ...
分类:其他好文   时间:2014-07-19 21:30:18    阅读次数:182
【leetcode】Candy
There areNchildren standing in a line. Each child is assigned a rating value.You are giving candies to these children subjected to the following requi...
分类:其他好文   时间:2014-07-19 21:07:18    阅读次数:188
Max Points on a Line
题目:就是求在同一直线上的点最多的个数。分析:斜率相同,那么它们就在一条直线上。unordered_map 简单介绍:boost::unordered_map是计算元素的Hash值,根据Hash值判断元素是否相同。所以,对unordered_map进行遍历,结果是无序的。来自为知笔记(Wiz)
分类:其他好文   时间:2014-07-19 19:37:23    阅读次数:205
3.3 将标准输入复制到标准输出
mycat/mycat.c#include "apue.h"#define BUFFSIZE 4096intmain(void){ int n; char buf[BUFFSIZE]; while ((n = read(STDIN_FILENO, buf, BUFFSIZE)) > 0) if .....
分类:其他好文   时间:2014-07-19 00:00:58    阅读次数:216
3.5 对一个文件描述符打开一个或多个文件状态标志
lib/setfl.c #include "apue.h"#include voidset_fl(int fd, int flags) /* flags are file status flags to turn on */{ int val; if ((val = fcntl(fd, F_GETF...
分类:其他好文   时间:2014-07-18 23:38:21    阅读次数:333
3.2 创建一个具有空洞的文件
file/hole.c #include "apue.h"#include char buf1[] = "abcdefghij";char buf2[] = "ABCDEFGHIJ";intmain(void){ int fd; if ((fd = creat("file.hole", FILE_M...
分类:其他好文   时间:2014-07-18 23:35:26    阅读次数:193
3.1 测试能否对标准输入设置偏移量
file/seek.c#include "apue.h"intmain(void){ if (lseek(STDIN_FILENO, 0, SEEK_CUR) == -1) printf("cannot seek\n"); else printf("seek OK\n"); exit(0);}
分类:其他好文   时间:2014-07-18 23:27:20    阅读次数:187
poj 1328 Radar Installation
Radar Installation Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 51305   Accepted: 11514 Description Assume the coasting is an infinite straight line. Land...
分类:其他好文   时间:2014-07-18 23:07:57    阅读次数:278
ZOJ 1610 Count the Colors
线段树:延伸标记+暴力更新 记得刚学线段树的时候做这题WA了一版。。。。。现在分分钟搞定。。。。 Count the Colors Time Limit: 2 Seconds      Memory Limit: 65536 KB Painting some colored segments on a line, some previously painted segm...
分类:其他好文   时间:2014-07-18 23:07:26    阅读次数:330
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!