上一页 1 2 3 4 5 6 7 ··· 14 下一页

2017年9月1日

Selenium IDE界面介绍

摘要: 安装步骤 1. 安装FireFox(注意版本不要太高,开始安装最新的50,Selenium IDE安装不了,改成了稳定的30) 2. 安装Selenium IDE Selenium IDE界面 1. Base URL,是被测试系统的初始URL地址 2. URL下的工具栏,包括运行速度控制、运行多个测 阅读全文

posted @ 2017-09-01 14:42 一个不会coding的girl 阅读(824) 评论(0) 推荐(0) 编辑

动态规划—distinct-subsequences

摘要: 题目: Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence of a string is a new string which is formed fr 阅读全文

posted @ 2017-09-01 10:09 一个不会coding的girl 阅读(221) 评论(0) 推荐(0) 编辑

2017年8月31日

动态规划—triangle

摘要: 题目: Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given th 阅读全文

posted @ 2017-08-31 15:45 一个不会coding的girl 阅读(168) 评论(0) 推荐(0) 编辑

2017年8月30日

Socket详解

摘要: 两个进程如果需要通信,最基本的前提是,能够唯一的标识一个进程。在本地通信中,可以通过PID唯一标识一个进程,但在网络中冲突几率大。 IP层的ip地址可以唯一标识主机,TCP层的协议和端口号唯一标识网络中的进程,所以可以利用ip地址+协议+端口号唯一标识网络中的进程。 socket是在应用层和传输层之 阅读全文

posted @ 2017-08-30 16:37 一个不会coding的girl 阅读(292) 评论(0) 推荐(0) 编辑

HTTP协议详解

摘要: HTTP简介 1. HTTP协议是用于从服务器传输超文本到本地浏览器的传送协议。 2. HTTP基于TCP/IP通信协议进行传送输数据(HTML文件、图片文件、查询结果等)。 3. HTTP是一个属于应用层的面向对象的协议,由于其简捷、快速的方式,适用于分布式超媒体信息系统。 4. HTTP协议工作 阅读全文

posted @ 2017-08-30 15:30 一个不会coding的girl 阅读(19685) 评论(0) 推荐(0) 编辑

2017年8月20日

树——populating-next-right-pointers-in-each-node(填充每个节点的next指针)

摘要: 问题: Given a binary tree Populate each next pointer to point to its next right node. If there is no next right node, the next pointer should be set toN 阅读全文

posted @ 2017-08-20 21:03 一个不会coding的girl 阅读(535) 评论(0) 推荐(0) 编辑

2017年8月18日

树——binary-tree-maximum-path-sum(二叉树最大路径和)

摘要: 问题: Given a binary tree, find the maximum path sum. The path may start and end at any node in the tree. For example: Given the below binary tree, Retu 阅读全文

posted @ 2017-08-18 14:29 一个不会coding的girl 阅读(657) 评论(0) 推荐(0) 编辑

树——sum-root-to-leaf-numbers(根到叶节点数字之和)

摘要: 问题: Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number. An example is the root-to-leaf path1->2->3whic 阅读全文

posted @ 2017-08-18 13:38 一个不会coding的girl 阅读(454) 评论(0) 推荐(0) 编辑

树——minimum-depth-of-binary-tree(二叉树的最小深度)

摘要: 问题: Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the neares 阅读全文

posted @ 2017-08-18 11:16 一个不会coding的girl 阅读(254) 评论(0) 推荐(0) 编辑

树——binary-tree-postorder-traversal(树的后序遍历)

摘要: 问题: Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree{1,#,2,3}, return[3,2,1]. 递归方法: 非递归方法(利用栈) 阅读全文

posted @ 2017-08-18 10:34 一个不会coding的girl 阅读(332) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 14 下一页

导航