题目 There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. T
题目 There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. T
Socket是网络协议上的一层抽象接口。本文整理了使用socket实现客户端和服务端的流程。 客户端 1. 使用 socket() 创建TCP套接字 该函数在头文件 sys/socket.h 中: [crayon-675b16d602025
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is
二分查找是分治算法的经典应用,它可以每次把问题的规模减少一半,从而在log的时间内找到结果。 二分查找 二分查找适用于有序数组的查找,它的核心思想是,选取一个数组中间的数字a[mid] 和要查找的数字 target 进行比较,如果targe
有时我们会遇到这样的需求:启动时需要从服务器获取一些配置信息,然后服务器其他接口的调用又依赖于这个接口返回的配置。 可以这样处理: 1、向服务器获取配置的接口,请求完成后发送通知,其他请求收到通知后可以执行了; 2、先调用获取请求配置的接口
Leetcode 32题 Given a string containing just the characters ‘(‘ and ‘)’, find the length of the l
剑指Offer面试题27题:二叉搜索树与双向链表 题目描述:输入一棵二叉搜索树,将该二叉搜索树转换成一个排序的双向链表。要求不能创建任何新的结点,只能调整树中结点指针的指向。 例如: 调整之后,节点的left指针相当于链表中的pred指针,
1、传入block的函数,注意各个return分支,都要block()
http请求图片时,可以在get请求头内设置ETag或Last-Modified来标记本地图片的版本标识; 服务端收到后,会先对比ETag或Last-Modified,如果相同时,直接返回http-code 304,不再返回图片data,这
iOS布局中,常常要计算UILabel的宽高,自动约束布局至今还用不熟,先把代码计算宽高的记一下: 一般这样几种需求: 1、给定字符串,限定label的宽高,自动调整label的font [crayon-675b16d603e5422834