码迷,mamicode.com
首页 > 编程语言
C语言之strrchr函数
【FROM MSDN && 百科】原型:char *strrchr(const char *str, char c);#include 找一个字符c在另一个字符串str中末次出现的位置(也就是从str的右侧开始查找字符c首次出现的位置),并返回从字符串中的这个位置起,一直到字符串结束的所有字符。如果...
分类:编程语言   时间:2014-07-30 09:49:13    阅读次数:284
Candy leetcode java
题目:There are N children standing in a line. Each child is assigned a rating value. You are giving candies to these children subjected to the followin....
分类:编程语言   时间:2014-07-30 09:45:23    阅读次数:200
[置顶] 深入探析Java线程锁机制
今天在iteye上提了一个关于++操作和线程安全的问题,一位朋友的回答一言点醒梦中人,至此我对Java线程锁有了更加深刻的认识。在这里也做个总结供大家参考。 先看几段代码吧! 代码一:[java] view plaincopypublicclassTestMultiThread2implements...
分类:编程语言   时间:2014-07-30 09:45:13    阅读次数:201
java中多线程的实例代码
今天开始学习java中的多线程,在看书的过程中写了一个实例来练习多线程的用法,下面把代码放到博文里,里面很多的注释,可以帮助理解。运行结果如下:main:启动MessageLoop线程。。。main:等待MessageLoop线程结束。。。main:继续等待。main:继续等待。main:继续等待。...
分类:编程语言   时间:2014-07-30 09:44:43    阅读次数:222
Python 获取Twitter用户与Friends和Followers的关系(eg, 交集,差集)
Python 获取Twitter用户与Friends和Followers的关系(eg, 交集,差集)...
分类:编程语言   时间:2014-07-30 07:41:03    阅读次数:272
java中同步嵌套引起的死锁事例代码
/* 目的:自己写一个由于同步嵌套引起的死锁! 思路:多个线程在执行时,某一时刻,0-Thread绑定了LockA锁,1-Thread绑定了LockB锁! 当0-Thread要去绑定LockB锁时 和 1-Thread要去绑定LockA锁时都不能绑定,此时两个线程不能继续进行!*/class Tic...
分类:编程语言   时间:2014-07-30 07:39:33    阅读次数:176
java学习笔记 6
Interface与继承不同,interface为一个类指明的是what it does而不是what it isJava中的多重继承多用implement多个interface代替(逻辑上来讲,一个is a很多的类的类通常用can do很多interface来表达会更合理)interface起名通...
分类:编程语言   时间:2014-07-30 05:35:23    阅读次数:343
Best Time to Buy and Sell Stock III leetcode java
题目:Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the maximum profit. You may com....
分类:编程语言   时间:2014-07-30 05:35:13    阅读次数:260
Best Time to Buy and Sell Stock II leetcode java
题目:Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the maximum profit. You may com....
分类:编程语言   时间:2014-07-30 05:35:03    阅读次数:309
Maximum Subarray leetcode java
题目: Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [?2,1,?3,4,?1...
分类:编程语言   时间:2014-07-30 05:34:43    阅读次数:319
Best Time to Buy and Sell Stock leetcode java
题目:Say you have an array for which the ith element is the price of a given stock on day i.If you were only permitted to complete at most one transact....
分类:编程语言   时间:2014-07-30 05:34:13    阅读次数:248
七日Python之路--第九天(blog与Django)
在做models之前,最好将https://docs.djangoproject.com/en/1.6/? 中的the model layer 细读。 ??? (一)琐碎 ????????(1)*args和**kwargs。的使用 ????????在Django中经常见到含...
分类:编程语言   时间:2014-07-30 03:32:23    阅读次数:373
c++时间增加
//123.cpp:定义控制台应用程序的入口点。//#include"stdafx.h"#include<vector>#include<iostream>#include<stdio.h>#include<windows.h>#include<string>usingnamespacestd;voidSplitSpring(conststring&src,constchar&csplit,vector&l..
分类:编程语言   时间:2014-07-30 03:30:23    阅读次数:240
有关javascript 里的Math的使用.
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <title>UntitledPage</title> <scripttype="text/javascript"&..
分类:编程语言   时间:2014-07-30 03:28:24    阅读次数:352
c++函数参数类型-值,指针,引用
以“值传递”方式向函数传递参数在编写个人函数的时候,你将会受到C++中的一条基本的原则的限制:在默认的情况下,变量只能以值传递的方式传递给函数。这句话的意思是:被传递到函数的只是变量的值,永远不是变量的本身。例如:voidchangeValue(intoriginalValue,intnewValue){..
分类:编程语言   时间:2014-07-30 03:25:03    阅读次数:348
java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderL
今天学习spring项目的时候出现了下面的错误信息: java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:17...
分类:编程语言   时间:2014-07-30 03:21:53    阅读次数:245
Word Break II leetcode java
题目:Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.Return all suc....
分类:编程语言   时间:2014-07-30 03:19:32    阅读次数:341
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!