题目链接:国际版[https://leetcode.com/problems/letter-combinations-of-a-phone-number/],国内版[http...
题目链接:国际版[https://leetcode.com/problems/letter-combinations-of-a-phone-number/],国内版[http...
题目链接:国际版[https://leetcode.com/problems/remove-nth-node-from-end-of-list/],国内版[https://l...
题目链接:国际版[https://leetcode.com/problems/4sum/description/],国内版[https://leetcode.cn/probl...
题目链接:国际版[https://leetcode.com/problems/3sum/description/],国内版[https://leetcode.cn/probl...
题目链接:国际版[https://leetcode.com/problems/integer-to-roman/],国内版[https://leetcode.cn/probl...
题目链接:国际版[https://leetcode.com/problems/container-with-most-water/description/],国内版[http...
题目链接:国际版[https://leetcode.com/problems/lru-cache/description/],国内版[https://leetcode.cn/...
题目链接:国际版[https://leetcode.com/problems/longest-palindromic-substring/description/],国内版[...
题目链接:国际版[https://leetcode.com/problems/two-sum/description/],国内版[https://leetcode.cn/pr...
1、给别人带零食、早餐这些小价钱物品时,别人要给你转钱,你就老实把钱收下,不要觉得对方会认为你抠,你不收他才难受。 没人缺这几块钱,更没人愿意为这几块钱欠你人情。 2、不要轻...
面向对象编程的概念 万物皆对象。 面向对象指以属性和行为的观点去分析现实生活中的事物。 面向对象编程指先以面向对象的思想进行分析,然后使用面向对象的编程语言 进行表达的过程。...
面向对象 要理解面向对象思想,我们先要知道什么是对象? 《Java编程思想》中提到“万物皆为对象”的概念。它将对象视为一种奇特的变量,它除了可以存储数据之外还可以对它自身进行...
1. 概述 总的来说,计算机语言给子程序传递参数的方法有两种。第一种方法是按值传递(call-by-value)。这种方法将一个参数值(value)复制成为子程序的正式参数。...
1. 访问控制 私有成员:通过关键字 private 来声明。无法从类的外部访问到私有成员,只能被该类自身访问和修改。即使是该类的子类也无法对私有成员进行获取或引用,从而达到...
1. 线程 有的进程可能需要同时做很多事,而传统的进程只能串行地执行一系列程序,为此引入了线程概念来增加并发度 传统的进程是程序执行流的最小单位,引入线程之后,线程成为了程序...