码迷,mamicode.com
首页 > 其他好文
Remove Duplicates from Sorted List II
Given a sorted linked list, delete all nodes that have duplicate numbers, leaving onlydistinctnumbers from the original list.For example,Given1->2->3-...
分类:其他好文   时间:2015-03-21 09:44:18    阅读次数:119
中国古代冷兵器介绍大全
在中国古代,中国的冷兵器可谓是品种繁多,眼花缭乱,虽有中国18般武器之说,但是真个数起来,中国的武器远远多于18种,不管是从常规武器,特殊武器,暗器,绿林武器来看,这比同时代的欧洲的不管是罗马军团还是十子军,还是哥特骑士远超过中世纪的欧洲要先进得多,这里鄙人就凭着平时积累的关于冷兵器的,条顿骑士.....
分类:其他好文   时间:2015-03-21 09:43:24    阅读次数:122
SVM之问题形式化
SVM内容繁多,打算用五篇文章来记述。SVM之形式化描述给出SVM的问题描述与基本模型;SVM之对偶问题将SVM求解转换为对偶问题的求解;SVM之核函数描述了SVM引人核函数进行特征向高维映射的过程;SVM之解决线性不可分描述了SVM对线性不可分数据的处理方法;另外,写在SVM之前——凸优化与对偶问...
分类:其他好文   时间:2015-03-21 09:42:25    阅读次数:160
CodeForces 180C Letter
题意:给你一个字符串,问你所有的大写字母都要在所有的小写字母的右边,你一个操作可以改变一个字母的大小写,问你满足条件的最小步数。解题思路:DP解题代码: 1 // File Name: 180c.cpp 2 // Author: darkdream 3 // Created Time: 2015年0...
分类:其他好文   时间:2015-03-21 09:43:03    阅读次数:122
将表里的数据批量生成INSERT语句的存储过程 继续增强版
原文:将表里的数据批量生成INSERT语句的存储过程 继续增强版文章继续 桦仔兄的文章 将表里的数据批量生成INSERT语句的存储过程 增强版 继续增强... 本来打算将该内容回复于桦仔兄的文章的下面的,但是不知为何博客园就是不让提交!.... 所以在这里贴出来吧,算作继续增加文章中解决的:根据查询...
分类:其他好文   时间:2015-03-21 09:41:21    阅读次数:112
Get the Uniqueid of Action Originate in the AMI
[asterisk-users] Get the Uniqueid of Action Originate in the AMIAdolphe Cher-Aimeacheraime at gmail.comMon Nov 8 12:43:57 CST 2010Previous message:[as...
分类:其他好文   时间:2015-03-21 09:41:28    阅读次数:172
POJ 3090 Visible Lattice Points 布雷级数
Visible Lattice Points Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 5779   Accepted: 3409 Description A lattice point (x, y) in the first quadrant (x an...
分类:其他好文   时间:2015-03-21 08:38:16    阅读次数:139
【008】【JVM——性能监控与故障处理工具】
HotSpot虚拟机提供了许多虚拟机运行时调试工具,方便开发人员在应用运行时对虚拟机和应用性能进行监控和优化...
分类:其他好文   时间:2015-03-21 08:38:12    阅读次数:167
LeetCode – Refresh – Minimum Path Sum
Simple DP, but notes:1. initialize the array not only for dp[i] += dp[i-1], but also dp[i] += dp[i-1] + grid[i][0];2. Clear that we are using one dime...
分类:其他好文   时间:2015-03-21 08:35:36    阅读次数:115
LeetCode – Refresh – Merge Two Sorted Lists
Iterative: 1 /** 2 * Definition for singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 * ListNode(int x) : ...
分类:其他好文   时间:2015-03-21 08:37:15    阅读次数:117
学会谈判zz
学会谈判--文/曾锡文,联合利华中国区副总裁
分类:其他好文   时间:2015-03-21 08:34:25    阅读次数:133
LeetCode – Refresh – Missing Ranges
1 class Solution { 2 public: 3 string getRange(int start, int end) { 4 ostringstream oss; 5 if (start == end) { 6 oss...
分类:其他好文   时间:2015-03-21 08:36:43    阅读次数:154
2015年Sugarhosts 糖果主机综合阐述性能
与Sugarhosts其他虚拟主机一样,采用cPanel面板管理,全部默认中文界面,便于新手站长,尤其是不太熟悉英文的用户需要。对于香港,香港虚拟主机Standard限制5站点,PRO方案10站点,流量分别是10GB和50GB,相对于价格来说香港虚拟主机Standard年付是386元,而美国、德.....
分类:其他好文   时间:2015-03-21 08:36:22    阅读次数:223
LeetCode – Refresh – Min Stack
Use two stacks :class MinStack {private: stack s, minS;public: void push(int x) { if (minS.empty() || x s;public: void push(int x) { ...
分类:其他好文   时间:2015-03-21 08:34:04    阅读次数:124
LeetCode – Refresh – Minimum Depth of Binary Tree
1 /** 2 * Definition for binary tree 3 * struct TreeNode { 4 * int val; 5 * TreeNode *left; 6 * TreeNode *right; 7 * TreeNode(i...
分类:其他好文   时间:2015-03-21 08:35:28    阅读次数:123
Page Visibility实现焦点丢失提醒
HTML5 Page Visibility API是一个非常有用的特性,当页面对用户不可见时,暂停播放页面中的视频、动画、声音、以及其他耗费内存的操作,等用户回来时,再继续这些操作。当然,最好提醒下用户可以继续回到本页面上来,本文研究利用改变页面tab(title)实现提醒。...
分类:其他好文   时间:2015-03-21 07:31:41    阅读次数:176
LeetCode – Refresh – Merge Sorted Array
Note:Since it merged from end, so1. tmp1, tmp2 = INT_MIN2. tmp1 > tmp2 1 class Solution { 2 public: 3 void merge(int A[], int m, int B[], int n) {...
分类:其他好文   时间:2015-03-21 07:32:13    阅读次数:117
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!