上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 98 下一页
摘要: Given a string, find the length of the longest substring without repeating characters. Example 1: Input: "abcabcbb" Output: 3 Explanation: The answer 阅读全文
posted @ 2018-09-27 16:50 Veritas_des_Liberty 阅读(145) 评论(0) 推荐(0) 编辑
摘要: You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai 阅读全文
posted @ 2018-09-27 16:35 Veritas_des_Liberty 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 本题要求实现一个函数,找到并返回链式表的第K个元素。 函数接口定义: ElementType FindKth( List L, int K ); 其中List结构定义如下: typedef struct LNode *PtrToLNode; struct LNode { ElementType Da 阅读全文
posted @ 2018-09-25 17:19 Veritas_des_Liberty 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 本题要求实现一个函数,求链式表的表长。 函数接口定义: 其中List结构定义如下: L是给定单链表,函数Length要返回链式表的长度。 裁判测试程序样例: 输入样例: 输出样例: AC code: 阅读全文
posted @ 2018-09-25 17:04 Veritas_des_Liberty 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 本题要求实现顺序表的操作集。 函数接口定义: 其中List结构定义如下: 各个操作函数的定义为: List MakeEmpty():创建并返回一个空的线性表; Position Find( List L, ElementType X ):返回线性表中X的位置。若找不到则返回ERROR; bool I 阅读全文
posted @ 2018-09-25 17:01 Veritas_des_Liberty 阅读(1629) 评论(1) 推荐(1) 编辑
摘要: 本题要求实现一个函数,将给定的单链表逆转。 函数接口定义: List Reverse( List L ); 其中List结构定义如下: typedef struct Node *PtrToNode; struct Node { ElementType Data; /* 存储结点数据 */ PtrTo 阅读全文
posted @ 2018-09-25 16:19 Veritas_des_Liberty 阅读(3286) 评论(3) 推荐(0) 编辑
摘要: K的因子中只包含2 3 5。满足条件的前10个数是:2,3,4,5,6,8,9,10,12,15。 所有这样的K组成了一个序列S,现在给出一个数n,求S中 >= 给定数的最小的数。 例如:n = 13,S中 >= 13的最小的数是15,所以输出15。 Input Output Input示例 Out 阅读全文
posted @ 2018-09-23 17:11 Veritas_des_Liberty 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 将一堆正整数分为2组,要求2组的和相差最小。 例如:1 2 3 4 5,将1 2 4分为1组,3 5分为1组,两组和相差1,是所有方案中相差最少的。 Input Output Input示例 Output示例 分成两组当两组的数据都趋向于算术平均值的时候此时的差值最小,res来表示一个背包,背包的空 阅读全文
posted @ 2018-09-23 15:40 Veritas_des_Liberty 阅读(277) 评论(0) 推荐(1) 编辑
摘要: 1.DOM access with jQuery The jQuery function can be named $ or jQuery 2.DOM modification with jQuery 3.jQuery collections & looping jQuery collections 阅读全文
posted @ 2018-05-18 17:24 Veritas_des_Liberty 阅读(274) 评论(0) 推荐(0) 编辑
摘要: Modifying an existing element Modifying an existing element Modifying an existing element Modifying an existing element We covered various ways that y 阅读全文
posted @ 2018-05-06 16:36 Veritas_des_Liberty 阅读(142) 评论(0) 推荐(0) 编辑
上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 98 下一页