摘要: 学习人工智能的两大错误 答: 第一:不要死磕Python 第二:不要死看书,不碰代码 无论你看了多少本英语书语法,你不去听说读写道理都是一样的,一点意义都没有,起步的方向不要搞错。 一定要代码先切入进去,然后再理论跟上。 先简单任务代码切入,紧接着我们再回到理问题上,加深我们对神经网络,反向传播对很 阅读全文
posted @ 2021-03-18 09:31 王廷胡_白嫖帝 阅读(76) 评论(0) 推荐(0)
摘要: 程序员为什么工资高?答: 不是因为他累,不是因为他加班时间长,而是因为这个岗位比较稀缺。 大家大一的时候接触C语言的时候就导致很多人跟编程无缘了,正所谓一朝 被蛇咬十年帕金森。 其实编程语言很简单,不管是C还是C++,还是Java,还是PHP还是 Python都很容易,其实大家在学习的时候,把简单的 阅读全文
posted @ 2021-03-18 09:30 王廷胡_白嫖帝 阅读(456) 评论(0) 推荐(0)
摘要: 如何讲解自己做过的项目? 答: 对面试官讲解自己的项目的时候,要有调理,有条理,有逻辑,有思考,有总结 的对自己的项目进行讲述。 让面试官觉得你是他们需要的人:有思考能力,会解决问题的人。 简单明了的从行业类型和项目性质,说明是一个什么样的项目,详细说明两三个 你在这个项目中负责的模块,提炼自己的技 阅读全文
posted @ 2021-03-18 09:27 王廷胡_白嫖帝 阅读(792) 评论(0) 推荐(0)
摘要: 初学者如何学习一门新的语言最快最好的方法是:过、抄、仿、改、调、看、练、创、悟。 1、过:了解大概 学习一门新的语言,第一步就是把他所涉及到的基础知识大体过一遍,不求深解,只求了解。 第一遍:无需了解太过深的理论,大体知道这门语言是什么样的,主要面向那些场合,一些基本的语法格式是什么样的就可以了。2 阅读全文
posted @ 2021-03-18 09:25 王廷胡_白嫖帝 阅读(169) 评论(0) 推荐(0)
摘要: linux串口通讯的步骤图 1.打开串口 //打开串口 int open_port(void) { int fd; fd=open("/dev/ttyUSB0",O_RDWR | O_NOCTTY | O_NONBLOCK);//O_NONBLOCK设置为非阻塞模式,在read时不会阻塞住,在读的时 阅读全文
posted @ 2021-03-17 11:23 王廷胡_白嫖帝 阅读(231) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <sys/socket.h> 3 #include <arpa/inet.h> 4 #include <netinet/in.h> 5 #include <string.h> 6 #include <stdlib.h> 7 #inclu 阅读全文
posted @ 2021-03-16 15:07 王廷胡_白嫖帝 阅读(159) 评论(0) 推荐(0)
摘要: main.c 1 #include <stdio.h> 2 #include "other.h" 3 int main() 4 { 5 int addr[10] = {12,353,24512,0,23,51,245,2,5623,24}; 6 int len = sizeof(addr)/size 阅读全文
posted @ 2021-03-03 23:56 王廷胡_白嫖帝 阅读(139) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 /*************************** 3 * 头文件:#include <stdio.h> 4 * 函数:int fseek(FILE *stream, long offset, int whence); 5 * 功能:重定向我们的文 阅读全文
posted @ 2021-03-03 23:54 王廷胡_白嫖帝 阅读(92) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 struct Student 4 { 5 char m_name[20]; //姓名 6 int m_age; //年龄 7 int m_height; //身高 8 }; 9 typedef struct S 阅读全文
posted @ 2021-03-03 23:53 王廷胡_白嫖帝 阅读(118) 评论(0) 推荐(0)
摘要: 文件存储,无链表,使用100数组实现简易学生管理系统 main.c 1 #include <stdio.h> 2 #include "menu.h" 3 #include "student.h" 4 Student_t stu[100]; 5 int Stu_size = 0; 6 int main 阅读全文
posted @ 2021-03-03 23:50 王廷胡_白嫖帝 阅读(481) 评论(0) 推荐(0)