看了python核心编程和大牛的视频之后,自己动手也试了一试,写写笔记,加深一下印象 首先服务端要导入socket模块,然后绑定地址和端口,并监听,然后进入等待接收来自客户端请求的一个循环,如果有数据来连接,则接收数据,整理后把请求的数据发给客户端。 客户端则也是导入socket模块,连接地址和端口 ...
分类:
其他好文 时间:
2018-02-12 23:43:16
阅读次数:
475
很多人觉得系统自带的标题栏太丑了,想要自绘一个标题栏,去掉了系统自带的标题栏后,就需要自己实现窗口移动,下面的代码就是实现窗口移动。 widget.h widget.cpp ...
分类:
移动开发 时间:
2018-02-12 23:43:06
阅读次数:
425
一、公有属性和私有属性 二、公有属性、私有属性和静态属性 ...
分类:
其他好文 时间:
2018-02-12 23:42:54
阅读次数:
320
https://www.nowcoder.com/practice/6ab1d9a29e88450685099d45c9e31e46?tpId=13&tqId=11189&tPage=2&rp=2&ru=/ta/coding-interviews&qru=/ta/coding-interviews/ ...
分类:
其他好文 时间:
2018-02-12 23:42:47
阅读次数:
315
"在线预览" 方法 使用nodeType判断类型,在allChildNodes方法内建立递归函数将allCN封装在方法内。 ...
分类:
其他好文 时间:
2018-02-12 23:42:38
阅读次数:
388
2-SAT。洛谷P3845 一开始以为——怎么有3个呢?后来发现因为每个地图都有一种车是不能用的,所以就等于每一个地图都有两个适应的车啦。 那么对于x类型的地图呢——只有8个,直接2^8暴力枚举每一种可能,就转化为了普通的问题。 令u,u'分别为一个地图适应的两种车,那么对于一个要求h1 - d1, ...
分类:
其他好文 时间:
2018-02-12 23:42:31
阅读次数:
363
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... ...
分类:
其他好文 时间:
2018-02-12 23:42:23
阅读次数:
334
绑定IO资源:获取文件当前的使用权限FileWriter和FileReader是Io流升级的便捷类,不能代表IO流数据就是二进制数同样的二进制数据,被不同软件通过规则翻译成不同形式的数据显示出来,其本质一直都是二进制数字OutputStream:字节输出流的根类,定义了所有字节输出流应该具备的方法c ...
分类:
其他好文 时间:
2018-02-12 23:42:17
阅读次数:
280
编程中出现的问题注释里可以找到 小知识: 1,存储类: 存在时间:自动,静态 作用域:代码块,文件 链接:空,内部,外部 声明方式:代码块外部(static),内部(static)(register,放寄存器内,快点) 2, 需要数字小标的时候:函数宏+粘合## 3, 静态存储时期的变量,必须大小固 ...
分类:
其他好文 时间:
2018-02-12 23:42:09
阅读次数:
322
Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.Example:Input: "babad" Output: "bab... ...
分类:
其他好文 时间:
2018-02-12 23:41:59
阅读次数:
341
You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins that you nee ...
分类:
其他好文 时间:
2018-02-12 23:41:52
阅读次数:
345
Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2.Note:The length of both num1 and num2 is < 1... ...
分类:
其他好文 时间:
2018-02-12 23:41:41
阅读次数:
420
Given a Binary Search Tree (BST) with the root node root, return the minimum difference between the values of any two different nodes in the tree.Exam... ...
分类:
其他好文 时间:
2018-02-12 23:41:33
阅读次数:
652
re正则匹配,如果没有匹配到就返回None,匹配结果加上.group()就会以字符串形式返回匹配结果 re的匹配语法 re的匹配语法 re.match() 从头开始匹配 只能从左边第一个开始匹配 re.search() 匹配包含 从字符串中的任意位置开始匹配 re.match()和re.search ...
分类:
编程语言 时间:
2018-02-12 23:41:26
阅读次数:
349
Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the length... ...
分类:
其他好文 时间:
2018-02-12 23:41:19
阅读次数:
317
菜哭了。。。 A.石油采集 A.石油采集 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 32768K,其他语言65536K 64bit IO Format: %lld 链接:https://www.nowcoder.com/acm/contest/76/A来源:牛客网 题目描述 随 ...
分类:
编程语言 时间:
2018-02-12 23:41:06
阅读次数:
791
案例分析:重构“策略”模式 ![此处输入图片的描述][1] 《设计模式:可复用面向对象软件的基础》一书是这样概述“策略”模式的: 定义一系列算法,把它们一一封装起来,并且使它们可以相互替换。本模式使得算法可以独立于使用它的客户而变化。 假如一个网店制定了下述折扣规则: 有 1000 或以上积分的顾客 ...
分类:
其他好文 时间:
2018-02-12 23:40:59
阅读次数:
342