明理柠檬

文章
7
资源
1
加入时间
2年10月20天

清除Cookie

HttpCookie cookies = Request.Cookies[SessionKeys.CookieName]; if (cookies != null) { cookies.Expires = DateTime.Today.AddDays(-1); ...

MapReduce重写FileInputFormat和FileOutputFormat

在mapreduce中默认的mapper输入时LongWritable和Text,reducer输出是part-r-00000文件。但是我们可以通过重写FileInputFormat和FileOutputFormat类来实现自定义的mapper输入和reducer输出。 1.自定义mapper输入是重写FileInputFormat和RecordReader类,而真正产生mapper输入的key和

STLset容器排序

STLset容器排序学习目标:set容器默认排序规则为从小到大,掌握如何改变排序规则主要技术点:利用仿函数,可以改变排序规则代码示例一:#include<iostream>#include<set>using namespace std;//set容器排序class Mycompare{public: bool operator()(int v1, int v2) { return v1 &

题目4:MySQL----------Rank Scores

Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ranking. Note that after a tie, the next ranking number should be the next consecutive integer value.

Java随机字符串工具类

在造测试数据的时候,发现自动生成随机字符串的工具是多么有用,闲来无事就写了一个,将来会不会更新就一切随缘了。package random;import java.util.HashSet;import java.util.Iterator;import java.util.LinkedList;import java.util.List;import java.util.Random;public class RandomString { Random r = new Random(