Write a function to delete a node (except the tail) in a singly linked list, given only access to that node.Supposed the linked list is1 -> 2 -> 3 -> ...
分类:
其他好文 时间:
2015-12-09 17:22:05
阅读次数:
152
线程的用法:(一)使用继承的方式(耦合性高,不推荐) 定义一个线程,新建一个类继承自 Thread,然后重写父类的 run() 方法,并在里面添加耗时的逻辑,class MyThread extends Thread{ @Override public void run() {...
分类:
移动开发 时间:
2015-12-09 17:20:26
阅读次数:
164
转自:http://javatar.iteye.com/blog/376387在网上看到一篇时间管理的故事,好像以前在哪看过,翻出来一对比,同样的故事,得出的结论居然不一样,故事很简单,一个讲时间管理的老师用石头把瓶子填满了,问同学们是否满了,然后再用小石子,沙子,水进一步填满。第一种结论:时间总是...
分类:
其他好文 时间:
2015-12-09 17:19:58
阅读次数:
171
R语言 RStudio快捷键总结一、控制台 功能 Windows & Linux Mac移动鼠标到控制台 Ctrl+2 Ctrl+2移动到鼠标命令编辑 Ctrl+1 Ctrl+1控制台清屏 Ctrl+L Command+L移动鼠标至第一行 Home Command+Left移动鼠标至最后...
分类:
编程语言 时间:
2015-12-09 17:19:43
阅读次数:
220
继承Eclipse的快捷键 : File->Settings->Keymap->有一个Keymaps 下拉菜单,选择Eclipse。这里讲主要常用的快捷键 :Ctrl + G / Ctrl + Alt + Shift +G :查询变量或者函数或者类在哪里被使用或者被调用,后者是前者的复杂表现, .....
分类:
移动开发 时间:
2015-12-09 17:21:12
阅读次数:
200
我们在做web开发是,经常都要在eclipse或者myeclipse中搭建web服务器,并将开发中的web项目部署到web服务器进行调试,在此,我选择的是tomcat服务器。之前部署web项目到tomcat进行启动调试都很正常,今天突然出现无法启动情况,启动过程报如下错误:java.lang.Cla...
分类:
编程语言 时间:
2015-12-09 17:20:40
阅读次数:
167
题目:Given a string S, find the longest palindromic substring in S. You may assume that the maximum length of S is 1000, and there exists one unique lon...
分类:
其他好文 时间:
2015-12-09 17:18:01
阅读次数:
115
在分析之前,要严格区分一个概念是在概率学上的定义还是在统计学上的定义。概率学比统计学更加的抽象一点,概率学研究一个事件的理想的情况,但是在真实的世界,这种理想的情况是很难或者不可能达到的,所以利用统计学中的样本来估计这个理想的结果。方差的概念和定义概率论中方差用来度量随机变量和其数学期望(均值)之间...
分类:
其他好文 时间:
2015-12-09 17:18:29
阅读次数:
168
#include //直接插入排序 5,4,6,2,1//4 5 6//6void insertSort(int array[], int elementNum){ int referenceNum = 0;//保存即将插入的那个值 for (int i = 1; i = 0; j--) { ...
分类:
编程语言 时间:
2015-12-09 17:18:08
阅读次数:
152
Given an array of sizen, find the majority element. The majority element is the element that appears more than? n/2 ?times.class Solution {public: int...
分类:
其他好文 时间:
2015-12-09 17:16:36
阅读次数:
171
夺命雷公狗---Smarty NO:08 if–elseif–else函数
分类:
其他好文 时间:
2015-12-09 17:16:14
阅读次数:
149
http://www.cnblogs.com/wengshen/p/5027645.html 03翁丹青实验条理清楚,便于浏览,但字数有些少._________________________________________________http://www.cnblogs.com/TonyWin...
分类:
其他好文 时间:
2015-12-09 17:17:54
阅读次数:
148
今天是忙碌的一天,早上六点半就起床然后跑操,然后早自习。第一节课本来没课却被老师硬生生的上了两节课(睡了过去),然后思政老师没来,放了昨天看的视频,中午真是生气学校搞什么藏龙之星的演讲,弄得一中午都不好,虽然逃课去吃了饭但是还是挺生气的。跟我半毛钱的关系都没有,我为什么要去,真是浪费我时间,搞得我....
分类:
其他好文 时间:
2015-12-09 17:15:53
阅读次数:
146
Given an arraynums, write a function to move all0's to the end of it while maintaining the relative order of the non-zero elements.For example, givenn...
分类:
其他好文 时间:
2015-12-09 17:18:11
阅读次数:
100
Error Code: 1418This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want ...
分类:
其他好文 时间:
2015-12-09 17:16:43
阅读次数:
119
nvert a binary tree. 4 / \ 2 7 / \ / \1 3 6 9to 4 / \ 7 2 / \ / \9 6 3 1/*** Definition for a binary tree node.*...
分类:
其他好文 时间:
2015-12-09 17:15:28
阅读次数:
169
在《Programming Erlang》的OTP introduction章节中,作者通过循序渐进的方式,向我们展示了gen_server设计思路,现在做下总结:在具体看gen_server之前,我们先看一个server通用框架:在这个server里,你几乎看不到任何和具体功能相关的东西,它只提供...
分类:
其他好文 时间:
2015-12-09 17:15:39
阅读次数:
154