上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 36 下一页
摘要: 2023年9月编程人总共更新了4篇文章: 1.2023年8月文章一览 2.Programming abstractions in C阅读笔记:p144-p160 3.Programming abstractions in C阅读笔记:p161-p165 4.我为什么选择这样一份经常出差的工作 9月份 阅读全文
posted @ 2023-10-02 08:25 codists 阅读(36) 评论(0) 推荐(0)
摘要: 这几个月进入出差模式,在酒店与工厂两点一线之间往返。周五,在返回酒店途中,一名同事问我:“你工作了那么多年,为什么选择这样一份出差的工作?”,言外之意就是出差不方便,与家人、朋友聚少离多。 刚研究生毕业不久,算法岗的同事,相对于毕业好几年,从事后端开发的我而言,确实选择要多得多,有这样的疑问也理解。 阅读全文
posted @ 2023-09-27 07:56 codists 阅读(161) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第57天,开始第4章“Introduction to Recursion”的学习,p161-p165,总结如下。 一、技术总结 1.recursion vs stepwise refinement 答:p164, The strate 阅读全文
posted @ 2023-09-16 23:50 codists 阅读(108) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第56天,p144-p160。完成第三章内容学习,第三章总计54页(p107-p160),耗时10天,平均6页/天。 # 一、技术总结 第三章的内容主要介绍C语言中的库(library)和接口(interface),如我们最常遇到的以 阅读全文
posted @ 2023-09-06 08:46 codists 阅读(47) 评论(0) 推荐(0)
摘要: 2023年8月编程人总共更新了17篇文章。 1.[2023年7月文章一览](https://www.cnblogs.com/codists/articles/17599311.html) 2.[Programming Abstractions in C阅读笔记:p72-p75](https://ww 阅读全文
posted @ 2023-09-02 11:19 codists 阅读(49) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第55天,p139-p140,总结如下: # 一、技术总结 ## 1.文件I/O操作 文件I/O操作可以分为一下这些步骤: (1)声明文件指针对象。 ```c File *infile; ``` (2)打开文件 fopen()。打开文 阅读全文
posted @ 2023-08-31 08:34 codists 阅读(68) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第54天,p138,总结如下: # 一、技术总结 ## 1.stdio.h 3.4小节介绍“The standard I/O library”,涉及I/O操作最常用的接口是stdio.h,我们经常用到里面的printf函数。 ## 2 阅读全文
posted @ 2023-08-30 06:55 codists 阅读(36) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第53天,p132-p137,3.2小节“strings”总结如下: # 一、技术总结 3.2小节介绍了字符串的用法: 1.C语言是没有字符串(string)这种数据类型的,但是实际的场景中又很需要这种数据类型,那怎么表示字符串呢?有 阅读全文
posted @ 2023-08-29 08:49 codists 阅读(54) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第52天,p130-p131,总结如下: # 一、技术总结 ## 1. pig latin game 通过pig latin game掌握字符复制,指针遍历等操作。 ```c /* * 输入:字符串,这里采用书中坐着自定义的getli 阅读全文
posted @ 2023-08-28 08:50 codists 阅读(49) 评论(0) 推荐(0)
摘要: 《Programming Abstractions In C》学习第51天,p127-p129,总结如下: # 一、技术总结 ## 1. string library 掌握常用函数如strlen,strcpy用法。 ## 2.buffer overflow(缓冲区溢出) (1)什么是buffer? 阅读全文
posted @ 2023-08-24 21:33 codists 阅读(49) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 36 下一页