上一页 1 ··· 156 157 158 159 160 161 162 163 164 ··· 175 下一页
  2019年1月22日
摘要: http://blog.51cto.com/mengsir/896372 阅读全文
posted @ 2019-01-22 22:36 一杯明月 阅读(388) 评论(0) 推荐(0) 编辑
  2019年1月21日
摘要: 来源:https://cs.nyu.edu/courses/spring12/CSCI-GA.3033-014/Assignment1/function_pointers.html Function Pointers in C Just as a variable can be declared t 阅读全文
posted @ 2019-01-21 14:16 一杯明月 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 1.不适用typedef: 2.使用typedef: 阅读全文
posted @ 2019-01-21 11:18 一杯明月 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1.写: /*C++写文件和读文件*/ #include <stdio.h> #include <stdlib.h> int main() { FILE * fp; fp = fopen("test_file.txt", "w+"); fprintf(fp, "%d %s %s %s %s %s % 阅读全文
posted @ 2019-01-21 10:47 一杯明月 阅读(1099) 评论(0) 推荐(0) 编辑
摘要: /* fopen example */ #include #include using namespace std; int main() { FILE* fp; fp = fopen("C:/Users/Qin/Desktop/123.txt", "rb"); if ((fp == NULL)) { printf("\nerror on ... 阅读全文
posted @ 2019-01-21 10:25 一杯明月 阅读(2785) 评论(0) 推荐(0) 编辑
  2019年1月19日
摘要: 参考: https://www.cnblogs.com/rainbow70626/p/7989907.html https://www.cnblogs.com/DHUtoBUAA/p/6706642.html http://cdn.hujiulong.com/geohey/blog/mercator 阅读全文
posted @ 2019-01-19 09:24 一杯明月 阅读(923) 评论(0) 推荐(0) 编辑
  2019年1月15日
摘要: 栈,是一种存储受限的线性数据结构,在存储和访问数据的时候只能访问栈的一端。栈类似于一摞盘子,只能拿去最上面的盘子,也只能把盘子放到最上面。由于这种特点,栈是一种后进先出(Last in / First out, LIFO)的数据结构。 栈的主要操作有以下几种: push向栈顶插入元素(摞上去一个盘子 阅读全文
posted @ 2019-01-15 21:16 一杯明月 阅读(8327) 评论(0) 推荐(1) 编辑
  2019年1月6日
摘要: 参考:https://blog.csdn.net/zengraoli/article/details/70187556 https://blog.csdn.net/misterfm/article/details/79048594 阅读全文
posted @ 2019-01-06 11:29 一杯明月 阅读(973) 评论(0) 推荐(0) 编辑
  2018年12月28日
摘要: 链接:https://www.zhihu.com/question/21167385/answer/214543406 什么是 XML Schema? XML Schema 的作用是定义 XML 文档的合法构建模块,类似 DTD。 XML Schema 的作用: 定义可出现在文档中的元素 定义可出现 阅读全文
posted @ 2018-12-28 20:24 一杯明月 阅读(553) 评论(0) 推荐(0) 编辑
摘要: 来源:http://opendrive.org/docs/VIRES_ODR_OCRG.pdf OpenDRIVE® is the leading open format and de-facto standard for the description of road networks in dr 阅读全文
posted @ 2018-12-28 20:23 一杯明月 阅读(4243) 评论(0) 推荐(0) 编辑
上一页 1 ··· 156 157 158 159 160 161 162 163 164 ··· 175 下一页