摘要: http://shushanyegui.duapp.com/?p=731 在描述内存映射文件之前 我们先来写一个系统通过I/O来读写磁盘文件的小程序 #include "stdafx.h" #include <stdlib.h> #include <windows.h> char* Read(LPC 阅读全文
posted @ 2016-10-13 15:01 于光远 阅读(1252) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/ahjxly/article/details/8494217 http://blog.csdn.net/b_h_l/article/details/7581519 http://blog.chinaunix.net/uid-339069-id-3402668 阅读全文
posted @ 2016-10-13 11:51 于光远 阅读(12816) 评论(0) 推荐(0) 编辑
摘要: 题目描述 在一个排序的链表中,存在重复的结点,请删除该链表中重复的结点,重复的结点不保留,返回链表头指针。 例如,链表1->2->3->3->4->4->5 处理后为 1->2->5 /* struct ListNode { int val; struct ListNode *next; ListN 阅读全文
posted @ 2016-10-13 09:58 于光远 阅读(213) 评论(0) 推荐(0) 编辑