码迷,mamicode.com
首页 > 2016年01月27日 > 全部分享
PHP的加密解密字符串函数
/********************************************************************* 函数名称:encrypt 函数作用:加密解密字符串 使用方法: 加密 :encrypt('str','E','nowamagi...
分类:Web程序   时间:2016-01-27 09:14:05    阅读次数:167
PHP常用函数
一、数学函数 数学函数主要用于处理数字,包括整型、浮点数等。ABS(x) 返回x的绝对值 SELECT ABS(-1) -- 返回1CEIL(x),CEILING(x) 返回大于或等于x的最小整数 SELECT CEIL(1.5) -- 返回2FLOOR(x) 返回小于或等于x的最大整数 S...
分类:Web程序   时间:2016-01-27 09:15:23    阅读次数:177
Merge K Sorted Lists -- LeetCode
Mergeksorted linked lists and return it as one sorted list. Analyze and describe its complexity.思路:构建一个大小为K的小顶堆。每次从堆顶取走一个元素后,都将这个元素所属的链表中下一个元素加入堆中。若没有...
分类:其他好文   时间:2016-01-27 09:14:47    阅读次数:142
当集合里存储的是URL时的一些问题总结
1234567891011121314151617181920212223242526package com.lk.C;import java.net.MalformedURLException;import java.net.URL;import java.util.HashSet;import ...
分类:Web程序   时间:2016-01-27 09:13:41    阅读次数:172
Linux服务器管理员必备Linux命令TOP5
Linux桌面环境的界面友好度、图形性能及附件工具已经大幅进化,然而Linux服务器却还没有能达到这一步。 作为系统管理员必须熟练掌握Linux命令。Linux命令的内容很多,其中的一些TOP命令对于实现对服务器和数据中心的即时管理具有很重要的意义。 下文每个命令都有自己的作用,我们认为应该把它们加...
分类:系统相关   时间:2016-01-27 09:15:12    阅读次数:170
LeetCode "Remove Duplicate Letters" !!
Interesting Greedy.. classichttps://leetcode.com/discuss/75529/c-simple-solution-easy-understandingclass Solution {public: string removeDuplicateLe...
分类:其他好文   时间:2016-01-27 08:12:33    阅读次数:195
使用Node.js进行Web开发(一)
本文介绍Express框架、MVC设计模式、ejs魔板引擎以及MongoDB数据库的操作。 首先要知道Node.js实现网站的工作原理是实现动态网页,也就是说由服务器动态生成HTML页面。 MVC(Model-View-Controller,模型-试图-控制器)是一种软件的设计模式,即把一个...
分类:Web程序   时间:2016-01-27 08:09:47    阅读次数:193
夺命雷公狗---微信开发09----玩转单图文消息回复
夺命雷公狗---微信开发09----玩转单图文消息回复
分类:微信   时间:2016-01-27 08:08:53    阅读次数:426
Binary Tree Level Order Traversal -- LeetCode
Given a binary tree, return thelevel ordertraversal of its nodes' values. (ie, from left to right, level by level).For example:Given binary tree{3,9,2...
分类:其他好文   时间:2016-01-27 07:08:43    阅读次数:189
Validate Binary Search Tree -- LeetCode
Given a binary tree, determine if it is a valid binary search tree (BST).Assume a BST is defined as follows:The left subtree of a node contains only n...
分类:其他好文   时间:2016-01-27 07:09:04    阅读次数:178
阅读与写作
1 阅览书本——理顺框架,掌握体系,把握主流,夯实基础;2 泛读——动手实施,消化吸收,总结归纳;3 精读——扩展联系,深刻挖掘,提炼问题?4 写作——计划执行,定期完成,良性循环。
分类:其他好文   时间:2016-01-27 07:06:37    阅读次数:183
开源的Delphi性能调试工具
官网:http://dbg-spider.net/源码:https://github.com/yavfast/dbg-spiderRealtimeprofilerforDelphiapplications:?Detaileddebuginformation(internal,TDS,MAP)?Dis...
分类:Windows程序   时间:2016-01-27 07:07:28    阅读次数:211
C#获取存储过程返回值和输出参数值的方法
//转自网络,先留个底1.获取Return返回值//存储过程//Create PROCEDURE MYSQL// @a int,// @b int//AS// return @a + @b//GOSqlConnection conn = new SqlConnection(C...
分类:Windows程序   时间:2016-01-27 07:08:25    阅读次数:299
9. Palindrome Number
考虑溢出。思路就是用reverse integer的数学方法,把一个数倒过来,比较是否和原数字相同。特殊情况:1. 负数直接不对称2. 溢出直接不对称bug记录:记得把原数字保存一下,不然后面其实x的值已经变了 public boolean isPalindrome(int x) { ...
分类:其他好文   时间:2016-01-27 07:08:06    阅读次数:170
Search for a Range
Given a sorted array of n integers, find the starting and ending position of a given target value.If the target is not found in the array, return [-1,...
分类:其他好文   时间:2016-01-27 07:05:39    阅读次数:193
夺命雷公狗---微信开发08----发送歌名,在线听取MP3
夺命雷公狗---微信开发08----发送歌名,在线听取MP3
分类:微信   时间:2016-01-27 07:07:24    阅读次数:355
原来只是在原地打转
工作基本满两年,但是仍然提高不大。唯一增长的是对于工作方式,架构方面的理解和经验了。现在的工作内容和团队已经很难对于自身的提高有显著的帮助。虽然这样很”自私“吧,但是项目我都跟到了底,直到最终上线并维护了一段时间,结果并不完美。年后必须辞职,哪怕薪资有些低也没有关系,希望能对于个人而言,不是庸庸碌....
分类:其他好文   时间:2016-01-27 07:05:03    阅读次数:167
1139条   上一页 1 ... 59 60 61 62 63 64 65 ... 67 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!