Quantcast
Channel: CSDN博客推荐文章
Browsing all 35570 articles
Browse latest View live

Codeforces Round #221 (Div. 1) ABD

题目链接 代码链接 A: 很容易猜到,1 6 8 9这四个数字的排列A能够满足 (i*10000 + A)%7 == 0,那么好了,按照其他数字任意排列后对7取余的结果来安排这4个数字的顺序,最后把所有的0输出即可。 B: O(n^2)求出f(i,j) :...

View Article


IOS开发 有用连接

http://my.oschina.net/u/936286/blog/178416 http://www.cocoachina.com/special/fornew.html http://mobile.51cto.com/iphone-389249.htm 作者:yhhwatl 发表于2013-12-28 0:23:41 原文链接 阅读:183 评论:0 查看评论

View Article


win7成功干掉win8--一个小U盘引发的血案(U盘在win8下装win7的方法)

PS:其实前不久刚咬咬牙跺跺脚,入手了心仪已久的MacBook Air,也是第一台真正属于我自己的PC。心想:终于可以和Windows说拜拜了。 可谁曾想。。。。。。一新同事(性别:女)刚买了Lenovo V580c,(表示第一眼看到时惊呆了--苹果的产品会把人惯坏的)。。。 等等。。。擦。。。废话扯远了。。。拽回来--回归正题。...

View Article

boost log库 使用九

当在真正的App中使用前文的代码时,即使我等待了超过1小时,我都没有看到sign.csv文件中有日志记录。我需要一个方法在测试的时候立刻写入日志文件。如何做呢?boost log backend的类提供了一个方法auto_flush, 通过调用它,你可以让boost...

View Article

Image may be NSFW.
Clik here to view.

Wzplayer C++ 版本,WzplayerPro

WzplayerPro 是Wzplayer的C++版本,新版本支持插件解码器加载等等功能,以上是预览界面。 将会与Wzplayer一样,支持更多的平台,而且WzPlayer在初始化方面将会更快. 联系方式:weinyzhou86@gmail.com QQ:514540005 版权所有,禁止转载....

View Article


避免死锁之银行家算法

上篇博客中 进程管理之死锁 我们讲到了进程管理中死锁的各种问题,其中留下了死锁避免算法中著名的银行家算法没讲,下面就为大家详细解读。 1.安全序列...

View Article

atoi 把字符串转换成相应的整形数

#include<stdio.h> #include<stdlib.h> int main() { char s[ 50 ] ; scanf("%s",&s); printf("%d\n",atoi(s)*10); return 0 ; } #include<stdio.h> #include<stdlib.h> int main() {...

View Article

用汇编实现数字转化为字符串的函数itoa

对于熟悉C语言的大家来说说,itoa这个函数大家一定不会陌生。itoa是广泛应用的非标准C语言扩展函数,它的功能是:将任意类型的数字转换为字符串。...

View Article


Image may be NSFW.
Clik here to view.

我为什么要学习Linux?

好长时间没好好写点东西了,前段时间由于项目的需要出差了一个多月,期间各种加班,每天晚上加班到十点,回到宾馆实现是没什么精力再写博客了。有时间能静下来写点东西总是很好的一件事,如果写技术方面的博客,不仅能给读者提供一些解决问题的线索,也能加深自己对技术点的理解,如果写的是自己对项目的感悟,也算是对自己所做的工作的总结。现在终于有时间写点东西了,感觉还是不错的。...

View Article


在内存中读取函数的ShellCode并执行

在内存中读取函数的ShellCode并执行 下面是一个例子,实现的效果是将fun1函数的十六进制读取出来,在内存中将str1的地址改成str2,分配一块内存,将改好的函数的ShellCode写入并执行。 // FunTest.cpp : 定义控制台应用程序的入口点。 // // #include "stdafx.h" #include <windows.h> #pragma...

View Article

asp.net 操作cookie

protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { HttpCookie cookie = Request.Cookies["loginInfo"]; if (cookie != null) { cb_repwd.Checked = true; tb_loginName.Text =...

View Article

UVA 1374 - Power Calculus(迭代深搜)

Starting with x and repeatedly multiplying by x, we can compute x31 with thirty multiplications: x2 = x x x,     x3 = x2 x x,     x4 = x3 x x,     ...  ,     x31 = x30 x x. The operation of squaring...

View Article

Image may be NSFW.
Clik here to view.

“未来科技竞争力分析系统”项目总结(Web应用)

一个非常awkward的项目。。 项目需求概述 该系统主要用于分析国外的英文论文,通过统计论文的研究领域、被引用次数、发表机构、所在大学和第一作者等数据,以静态表图、动态表图、地图等形式展示出来,方便研究人员分析某个国家的科技影响力、资金投入情况等因素。系统主要分为四大模块,主界面如下图: 其中我负责 “生产力影响力分析”、“词义词典”,“投入结构分析“...

View Article


Image may be NSFW.
Clik here to view.

挨踢项目求生法则(6)——测试篇

...

View Article

DP21 LIS的变种问题-建桥问题 Variations of LIS-Building Bridge @geeksforgeeks

We have discussed Dynamic Programming solution for Longest Increasing Subsequence problem inthis post and a O(nLogn) solution in this post. Following are commonly asked variations of the standard LIS...

View Article


Image may be NSFW.
Clik here to view.

DP22 堆盒子问题 Box Stacking Problem @geeksforgeeks

You are given a set of n types of rectangular 3-D boxes, where the i^th box has height h(i), width w(i) and depth d(i) (all real numbers). You want to create a stack of boxes which is as tall as...

View Article

lucene通过tokenstream显示分词信息

public class AnalyzerUtil { public static void main(String[] args) { StandardAnalyzer sa=new StandardAnalyzer(Version.LUCENE_45); String str="I am come from jiangxi fengcheng tongtian . this is a...

View Article


lucene4.5.0之filter使用

filter过滤操作,对query出来的文档进行再次过滤。   public class SearcherUtil { private Directory directory=null; private IndexWriter writer=null; private IndexReader reader=null; private IndexSearcher searcher=null;...

View Article

lucene4.5.0之同义词实现

public class MyAnalyzer extends Analyzer { private CharArraySet stopsArraySet=null; public MyAnalyzer() { super(); // TODO Auto-generated constructor stub } public MyAnalyzer(CharArraySet...

View Article

lucene3.6.2之自定义评分

两个重要的类:CustomScoreQuery和CustomScoreProvider 两个重要的方法: 1:CustomScoreQuery--CustomScoreProvider getCustomScoreProvider(IndexReader reader) 2:CustomScoreProvider----customScore(int doc, float...

View Article
Browsing all 35570 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>