码迷,mamicode.com
首页 > 2018年02月12日 > 全部分享
socket tcp/ip 之简单ssh协议
看了python核心编程和大牛的视频之后,自己动手也试了一试,写写笔记,加深一下印象 首先服务端要导入socket模块,然后绑定地址和端口,并监听,然后进入等待接收来自客户端请求的一个循环,如果有数据来连接,则接收数据,整理后把请求的数据发给客户端。 客户端则也是导入socket模块,连接地址和端口 ...
分类:其他好文   时间:2018-02-12 23:43:16    阅读次数:475
Qt 窗口移动实现
很多人觉得系统自带的标题栏太丑了,想要自绘一个标题栏,去掉了系统自带的标题栏后,就需要自己实现窗口移动,下面的代码就是实现窗口移动。 widget.h widget.cpp ...
分类:移动开发   时间:2018-02-12 23:43:06    阅读次数:425
第174天:面向对象——公有属性、私有属性和静态属性
一、公有属性和私有属性 二、公有属性、私有属性和静态属性 ...
分类:其他好文   时间:2018-02-12 23:42:54    阅读次数:320
剑指Offer - 两个链表第一个公共节点
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
【题解】NOI2017游戏
2-SAT。洛谷P3845 一开始以为——怎么有3个呢?后来发现因为每个地图都有一种车是不能用的,所以就等于每一个地图都有两个适应的车啦。 那么对于x类型的地图呢——只有8个,直接2^8暴力枚举每一种可能,就转化为了普通的问题。 令u,u'分别为一个地图适应的两种车,那么对于一个要求h1 - d1, ...
分类:其他好文   时间:2018-02-12 23:42:31    阅读次数:363
2. Add Two Numbers 两个数字相加
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流
绑定IO资源:获取文件当前的使用权限FileWriter和FileReader是Io流升级的便捷类,不能代表IO流数据就是二进制数同样的二进制数据,被不同软件通过规则翻译成不同形式的数据显示出来,其本质一直都是二进制数字OutputStream:字节输出流的根类,定义了所有字节输出流应该具备的方法c ...
分类:其他好文   时间:2018-02-12 23:42:17    阅读次数:280
寒假 11(链表实现基本完成)
编程中出现的问题注释里可以找到 小知识: 1,存储类: 存在时间:自动,静态 作用域:代码块,文件 链接:空,内部,外部 声明方式:代码块外部(static),内部(static)(register,放寄存器内,快点) 2, 需要数字小标的时候:函数宏+粘合## 3, 静态存储时期的变量,必须大小固 ...
分类:其他好文   时间:2018-02-12 23:42:09    阅读次数:322
5. Longest Palindromic Substring 最长的回文子串
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
【Leetcode】322. Coin Change
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
43. Multiply Strings 字符串相乘
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
783. Minimum Distance Between BST Nodes BST节点之间的最小距离
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
Python模块-re模块
re正则匹配,如果没有匹配到就返回None,匹配结果加上.group()就会以字符串形式返回匹配结果 re的匹配语法 re的匹配语法 re.match() 从头开始匹配 只能从左边第一个开始匹配 re.search() 匹配包含 从字符串中的任意位置开始匹配 re.match()和re.search ...
分类:编程语言   时间:2018-02-12 23:41:26    阅读次数:349
3. Longest Substring Without Repeating Characters 最长的子串不重复字符
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
牛客网NowCoder 2018年全国多校算法寒假训练营练习比赛(第四场)A.石油采集(dfs) B.道路建设(最小生成树prim) C.求交集(暴力) F.Call to your teacher(迪杰斯特拉乱用) H.老子的全排列呢(dfs)
菜哭了。。。 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
1121条   1 2 3 4 5 6 ... 66 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!