一、文本编辑器 Notepad++、Editplus 二、集成开发环境 eclipse 三、eclipse安装 下载地址:http://www.eclipse.org/dow...

一、文本编辑器 Notepad++、Editplus 二、集成开发环境 eclipse 三、eclipse安装 下载地址:http://www.eclipse.org/dow...
一、简单的hello world程序 publicclassWelcome{ publicstaticvoidmain(String[]args){ System.out.p...
一、JDK下载网址 www.oracle.com/technetwork/java/javase/downloads/index.html 安装完成后打开cmd命令行可以输入...
一、计算机发展史 机器语言->汇编语言->高级语言 二、常见编程语言 C语言面向过程,主要用于嵌入式开发 C++用于操作系统、网络通讯、系统开发中 java用于企业级软件开发...
class Solution: def maxProfit(self, prices: List[int]) -> int: #找到一个最大值,一个最小值,分别为...
class Solution(object): def isPalindrome(self, x): """ :type x: int :rtyp...
class Solution: def climbStairs(self, n: int) -> int: #先将大问题化简成为小问题当一共8个台阶,最后一步走一...
import numpy as np class Solution: def uniquePaths(self, m: int, n: int) -> int: ...
class Solution: def maxSubArray(self, nums: List[int]) -> int: #思路:如果数组中的数都为负数,那么...
class Solution: def removeDuplicates(self, nums: List[int]) -> int: #首先将count的指针指...
# Definition for singly-linked list. # class ListNode: # def __init__(self, x): # ...
class Solution: def isValid(self, s: str) -> bool: tem=[None] dic={")":"(", "...
class Solution: def longestCommonPrefix(self, strs: List[str]) -> str: #先取出第0个字符串...
class Solution(object): def reverse(self, x): """ :type x: int :rtype: in...
# Definition for singly-linked list. # class ListNode(object): # def __init__(self, x...
class Solution: def longestPalindrome(self, s: str) -> str: ptmp='' #最长字符串的长度...
class Solution: def removeDuplicates(self, nums: List[int]) -> int: #首先将count的指针指...
本文适给日常使用过pdf文件,在哪里听说过LaTeX但又对它没有什么概念的孩子看。 大概能传递一点 “入门” 的信息吧。 【节约5分钟的人生】 如果你大概知道 HTML, M...
在有监督的机器学习中,经常会说到训练集(train)、验证集(validation)和测试集(test),这三个集合的区分可能会让人糊涂,特别是,有些读者搞不清楚验证集和测试...
出现 查看是不是将判断指针为空写成了赋给指针为空,错误赋值会造成访问错误。 出现头文件在路径中,但是显示没有文件,将c文件的属性~预编译头改为当前的头文件。