码迷,mamicode.com
首页 >  
搜索关键字:struct tm    ( 20030个结果
HDU 3062
http://acm.hdu.edu.cn/showproblem.php?pid=30622sat判定性问题模板#include #include #include #include #include #include using namespace std ;struct node { i...
分类:其他好文   时间:2014-05-08 19:24:07    阅读次数:363
《linux 内核完全剖析》 exit.c 代码分析笔记
exit.c 代码分析笔记  release           释放进程的函数release() 主要根据指定进程的任务数据结构指针,在任务数组中删除指定的进程指针,释放相关内存页,并立刻让内核重新调度进程的运行。 void release(struct task_struct * p) //释放p指向的进程 { int i; if (!p) //常规检测...
分类:系统相关   时间:2014-05-07 23:35:51    阅读次数:576
linux stat函数详解
linux stat函数详解 表头文件: #include #include 定义函数: int stat(const char *file_name, struct stat *buf);函数说明: 通过文件名filename获取文件信息,并保存在bu...
分类:系统相关   时间:2014-05-07 14:17:12    阅读次数:541
C语言结构体点滴
结构的本质是C语言的一种数据抽象,通俗的说,是基本数据类型的重组。为什么要重组呢?因为基本数据类型不够用了。为什么不够用了呢?因为需要的信息类型太多了。这是一个很大的话题。信息本来是没有什么类型之分的,但是为了便于在计算机内部的管理,人们在C语言中把信息先分成了基本的几个类型,比如整型、浮点型、字符型、布尔型等等。但是呢,描述一个事物的全部信息有时候仅用一种基本类型是不够的,比如一本书的基本属性:作者(字符型)、价格(浮点型)、出版日期(我也不知道什么型)、书名(字符型)。然而操蛋的是,我们要处理的并非是这...
分类:编程语言   时间:2014-05-07 13:31:59    阅读次数:347
扎实学习C语言(二)结构和联合
关于结构体的一个问题: 看下面这个结构体的声明,把它记作A struct node { int a; float b; struct node *next; }s; 和如下的结构体声明,把它记作Bstruct node { int a; float b; struct node next; }s; 他们的区别是啥? 今天学习《C和指针》第10...
分类:编程语言   时间:2014-05-07 03:19:10    阅读次数:313
C++ 取得系统当前时间
#include //* 方法一 time_t tt = time(NULL);//这句返回的只是一个时间cuo tm* t= localtime(&tt); printf("%d-%02d-%02d %02d:%02d:%02d\n", t->tm_year + 1900, t->tm_mon.....
分类:编程语言   时间:2014-05-07 02:02:51    阅读次数:540
Leetcode | Populating Next Right Pointers in Each Node I & II
Populating Next Right Pointers in Each Node IGiven a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLin...
分类:其他好文   时间:2014-05-07 01:34:51    阅读次数:407
网络流模版
递归版 struct Edge { int from, to, cap, flow; Edge(){} Edge(int from, int to, int cap, int flow) : from(from), to(to), cap(cap), flow(flow){} }; int n, m, s, t; vector edges; vector G[maxn]; bool v...
分类:其他好文   时间:2014-05-06 23:39:25    阅读次数:351
hdu1223
n个数,只能用 F[i][j]=(F[i-1][j]+F[i-1][j-1])*j F[i][j]代表i个数,有j个不同值的情况。比如A 大数模板 #include #include const int MAX =505; struct BigNum { int num[MAX]; int len; } a[51][51]; BigNum Add(...
分类:其他好文   时间:2014-05-06 23:06:51    阅读次数:364
《linux 内核完全剖析》 mktime.c
tm结构体的定义在time.h里面 struct tm { int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon; int tm_year; int tm_wday; int tm_yday; int tm_isdst; }; /*...
分类:系统相关   时间:2014-05-06 22:26:46    阅读次数:474
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!