首页 > 2018年02月12日 > 全部分享
keepalived高可用部署
Keepalived除了能管理LVS软件外,还可以作为其他服务(例如:Nginx、Haproxy、Mysql等)的高可用解决方案软件
分类:其他   时间:2018-02-12 23:36:47    收藏:0  评论:0  赞:0  阅读:473
多线程小结
CPU的基本执行单位数是线程有进程才有线程每个进程里至少有一个线程每个进程内可以有多个线程分时调度模型:线程轮流使用cpu,平均分配时间,如果没进行完等下次分配,如果进行完了还有时间就等待抢占式:按优先级大小来使用cpu,如果优先级相同就随机选择线程执行同一时刻,cpu只能执行一个线程但是多线程提高 ...
分类:编程语言   时间:2018-02-12 23:35:26    收藏:0  评论:0  赞:0  阅读:312
网络编程
Ip地址:每台电脑在互联网上唯一的标识符由四个网段组成,其本质是4个字节的二进制数主机名:计算机名 (可能会与其他人重复) Java中的InetAdress类表示一个IP地址主要是包括4个方法获取地址对象static InetAdress getLocalHost() 获取本地主机static In ...
分类:其他   时间:2018-02-12 23:35:09    收藏:0  评论:0  赞:0  阅读:312
【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:34:52    收藏:0  评论:0  赞:0  阅读:315
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:34:01    收藏:0  评论:0  赞:0  阅读:321
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:33:41    收藏:0  评论:0  赞:0  阅读:411
重構電商例子(策略模式)
案例分析:重构“策略”模式 ![此处输入图片的描述][1] 《设计模式:可复用面向对象软件的基础》一书是这样概述“策略”模式的: 定义一系列算法,把它们一一封装起来,并且使它们可以相互替换。本模式使得算法可以独立于使用它的客户而变化。 假如一个网店制定了下述折扣规则: 有 1000 或以上积分的顾客 ...
分类:其他   时间:2018-02-12 23:33:23    收藏:0  评论:0  赞:0  阅读:337
递归获取当前节点全部指定类型的子节点
"在线预览" 方法 使用nodeType判断类型,在allChildNodes方法内建立递归函数将allCN封装在方法内。 ...
分类:其他   时间:2018-02-12 23:33:03    收藏:0  评论:0  赞:0  阅读:300
牛客网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:32:45    收藏:0  评论:0  赞:0  阅读:621
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:32:22    收藏:0  评论:0  赞:0  阅读:322
【easy】141. Linked List Cycle
非常简单的题:判断链表有没有环(用快慢指针) ...
分类:其他   时间:2018-02-12 23:32:07    收藏:0  评论:0  赞:0  阅读:309
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:31:50    收藏:0  评论:0  赞:0  阅读:310
寒假 11(链表实现基本完成)
编程中出现的问题注释里可以找到 小知识: 1,存储类: 存在时间:自动,静态 作用域:代码块,文件 链接:空,内部,外部 声明方式:代码块外部(static),内部(static)(register,放寄存器内,快点) 2, 需要数字小标的时候:函数宏+粘合## 3, 静态存储时期的变量,必须大小固 ...
分类:其他   时间:2018-02-12 23:30:41    收藏:0  评论:0  赞:0  阅读:310
socket tcp/ip 之简单ssh协议
看了python核心编程和大牛的视频之后,自己动手也试了一试,写写笔记,加深一下印象 首先服务端要导入socket模块,然后绑定地址和端口,并监听,然后进入等待接收来自客户端请求的一个循环,如果有数据来连接,则接收数据,整理后把请求的数据发给客户端。 客户端则也是导入socket模块,连接地址和端口 ...
分类:其他   时间:2018-02-12 23:30:23    收藏:0  评论:0  赞:0  阅读:545
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:30:03    收藏:0  评论:0  赞:0  阅读:293
445. Add Two Numbers II 两个数字相加2
You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each of their nodes contai... ...
分类:其他   时间:2018-02-12 23:28:58    收藏:0  评论:0  赞:0  阅读:312
XML
XML可扩展性标记语言(标签),用来解决一对多的关系(map,list,map,list...)XML用来存储数据HTML用来显示数据文档声明:写在文件的第一行固定格式:<?xml version = "1.0" ?>,可以用一对单引号或者双引号version:版本号encoding 编码格式,默认 ...
分类:其他   时间:2018-02-12 23:28:41    收藏:0  评论:0  赞:0  阅读:218
12. Integer to Roman 整数转罗马数字
Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.1234567891011121314151617181920212223242526c... ...
分类:其他   时间:2018-02-12 23:28:07    收藏:0  评论:0  赞:0  阅读:279
复习三层架构
TransactionScope深入 第一、使用TransactionScope包围的范围,只要是同一个连接字符串创建的SqlConnection对象,即使是多个Connection对象也会在一个事务中。 第二、TransactionScope可以嵌套,TransactionScope嵌套的情况,只 ...
分类:其他   时间:2018-02-12 23:26:59    收藏:0  评论:0  赞:0  阅读:277
[sl]2018随想录
主动学习的重要性 形到,心不到问题. 这是积极性的问题.需要平时多去揣测,思索和总结. 不能仅仅那么一小会的热度 心累问题,不愿有自己的想法... 多读多看文学,历史等书籍. 延长思路... 否则思想会很贫困 躺着请不要玩手机,否则视力很遭罪 凡事预则立, 否则无法坚持 不要做伤害自己的事情. 要有 ...
分类:其他   时间:2018-02-12 23:26:43    收藏:0  评论:0  赞:0  阅读:279
1041条   1 2 3 4 ... 53 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!