摘要: 算法定义: 编写一段计算机程序一般都是实现一种已有的方法来解决某个问题。 这种方法大多和使用的编程语言无关--它适用于各种计算机以及编程语言。是这种方法而非计算机程序本身描述来解决问题的步骤。在计算机科学领域,我们用算法这个词来描述一种有限、确定、有效的并适合用计算机程序来实现的解决问题的方法。 我 阅读全文
posted @ 2020-12-03 18:12 diameter 阅读(81) 评论(0) 推荐(0) 编辑
摘要: Given the head of a linked list, remove the nth node from the end of the list and return its head. Follow up: Could you do this in one pass? Input: he 阅读全文
posted @ 2020-12-03 14:38 diameter 阅读(71) 评论(0) 推荐(0) 编辑
摘要: Given an array nums of n integers and an integer target, are there elements a, b, c, and d in nums such that a + b + c+ d = target? Find all unique qu 阅读全文
posted @ 2020-12-03 11:49 diameter 阅读(77) 评论(0) 推荐(0) 编辑