首页 > 其他
半导体行业收购潮来袭 2015开年收购案盘点及解读
半导体行业收购潮来袭 2015开年收购案盘点及解读来源: OFweek电子工程网 发布者:OFweek电子工程网有分析师表示:2015 年整个半导体市场将会发生巨变。一旦豪威科技下市成功,必然点燃美国硅谷公司与中国半导体公司整合的导火索,新一轮半导体收购潮蓄势待发。在过去短短的两个月的时间里,半导体...
分类:其他   时间:2015-03-08 21:22:11    收藏:0  评论:0  赞:0  阅读:399
H - The Falling Leaves
DescriptionEach year, fall in the North Central region is accompanied by the brilliant colors of the leaves on the trees, followed quickly by the fall...
分类:其他   时间:2015-03-08 21:22:01    收藏:0  评论:0  赞:1  阅读:308
ZOJ2971 Give Me the Number 【模拟】
这道题目使用Map。 然后一次性遍历下来即可。 QAQ注意初始化的时候小心点不要错..Source Code://#pragma comment(linker, "/STACK:16777216") //for c++ Compiler#include #include #include #incl...
分类:其他   时间:2015-03-08 21:21:11    收藏:0  评论:0  赞:0  阅读:266
宏定义#define
#include #define exchange(a,b){\int t;\t=a;\a=b;\b=t;\}int main(int arge,char *argv){int a=2,b=3;printf("交换前a=%d,b=%d",a,b);exchange(a,b);printf("交换后a...
分类:其他   时间:2015-03-08 21:20:21    收藏:0  评论:0  赞:0  阅读:238
Reverse Bits
uint32_t reverseBits(uint32_t n) { int k = 0; uint32_t result = 0; while(n){ result+=((n%2)>=1; k++; } return result;}
分类:其他   时间:2015-03-08 21:20:11    收藏:0  评论:0  赞:0  阅读:247
hihoCoder #1110 Regular Expression
Problem:DescriptionYour task is to judge whether the input is a legal regular expression.A regular expression is defined as follow:1: 0 and 1 are both...
分类:其他   时间:2015-03-08 21:20:01    收藏:0  评论:0  赞:0  阅读:376
Plus One
Plus One问题:Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant ...
分类:其他   时间:2015-03-08 21:19:41    收藏:0  评论:0  赞:0  阅读:272
HDU 5184
卡特兰数的一个变形而已。一个经典的习题变过来的:n+m个人排队买票,并且满足,票价为50元,其中n个人各手持一张50元钞票,m个人各手持一张100元钞票,除此之外大家身上没有任何其他的钱币,并且初始时候售票窗口没有钱,问有多少种排队的情况数能够让大家都买到票。此时答案是:反过来考虑就是,把右括号看成...
分类:其他   时间:2015-03-08 21:19:31    收藏:0  评论:0  赞:0  阅读:265
Remove Duplicates from Sorted Array II
Remove Duplicates from Sorted Array II问题:Follow up for "Remove Duplicates":What if duplicates are allowed at mosttwice?For example,Given sorted array ...
分类:其他   时间:2015-03-08 21:19:14    收藏:0  评论:0  赞:0  阅读:274
小希的迷宫
Description上次Gardon的迷宫城堡小希玩了很久(见Problem B),现在她也想设计一个迷宫让Gardon来走。但是她设计迷宫的思路不一样,首先她认为所有的通道都应该是双向连通的,就是说如果有一个通道连通了房间A和B,那么既可以通过它从房间A走到房间B,也可以通过它从房间B走到房间A...
分类:其他   时间:2015-03-08 21:18:41    收藏:0  评论:0  赞:0  阅读:306
Linked List Cycle II
Linked List Cycle II问题:Given a linked list, return the node where the cycle begins. If there is no cycle, returnnull.Follow up:Can you solve it withou...
分类:其他   时间:2015-03-08 21:18:31    收藏:0  评论:0  赞:0  阅读:274
《梦断代码》第一章 死定了 阅读笔记
第二章 死定了 一个人如果延误了项目,那么他死定了! “约翰死定了,在下个版本出来前,他得连干五百个钟头······凯蒂死定了。她得感到天荒地老。布莱恩越发要完蛋。而且他只有一半的时间了。至于安迪吗,只有安迪没事。他的工作列表上没有成百上千的任务。”书中这样写道。 建造之前,要先有蓝图。你所需的时间...
分类:其他   时间:2015-03-08 21:18:23    收藏:0  评论:0  赞:0  阅读:268
【置换,推理】UVa 1315 - Creaz tea party
Dsecriptionn participants of «crazy tea party» sit around the table. Each minute one pair of neighbors can change their places. Find the minimum time ...
分类:其他   时间:2015-03-08 21:18:11    收藏:0  评论:0  赞:0  阅读:258
leetcode------Add Two Numbers
标题:Add Two Numbers通过率:22.6%难度:中等You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each ...
分类:其他   时间:2015-03-08 21:17:41    收藏:0  评论:0  赞:0  阅读:222
Tarjan 求强连通分量刘汝佳模板
1 vector G[MAXN]; 2 int pre[MAXN], lowlink[MAXN], sccno[MAXN], dfs_clock, scc_cnt; 3 stack S; 4 void Tarjan(int u) 5 { 6 pre[u] = lowlink[u] = ++...
分类:其他   时间:2015-03-08 21:17:31    收藏:0  评论:0  赞:0  阅读:326
redis2.6.4 在centos6.4上的安装
今天装了个centos2.6.4 然后装jdk,完了redis2.6.4装redis2.6.4折腾了老半天,缺了很多东西,连gcc都没有无语中……废话不多说,直接上过程1、报错一 没用gcc安装过程 yum install cpp yum install binutils yum install g...
分类:其他   时间:2015-03-08 21:17:01    收藏:0  评论:0  赞:0  阅读:296
atomikos分布式事务的几个坑
atomikos几个坑:1.jta.properties:com.atomikos.icatch.output_dir=/datayes/atomikoscom.atomikos.icatch.log_base_dir=/datayes/atomikos若一个tomcat上有两个atomikos应用...
分类:其他   时间:2015-03-08 21:16:31    收藏:0  评论:0  赞:0  阅读:474
Pav OpenCart 商城自适应主题模板 ABC-0006-01
模板详情地址?http://www.chinaopencart.cn/index.php?route=product/product&product_id=55 模板特性兼容浏览器IE8, IE9, IE10, IE11, Firefox, Safari, Opera, Chrome OpenCart版本OpenCart 1.5.6.x, OpenCar...
分类:其他   时间:2015-03-08 20:14:41    收藏:0  评论:0  赞:0  阅读:196
黑马程序员—类加载、内省、注解、代理
一、类加载器 类加载器用于加载Java的字节代码到Java虚拟机中,同时将配置文件等放在classpath目录下。 类加载器读取Java字节码文件并转换成Java.lang.Class类的一个实例,通过该实例的newInstance()方法可以创建该类对象(相当于调用空参数的构造方法)。基本上所有的类加载器都是 java.lang.ClassLoader类的一个实例。 ClassLoader...
分类:其他   时间:2015-03-08 20:13:51    收藏:0  评论:0  赞:0  阅读:294
灰度图像--图像分割 阈值处理之补充说明
阈值处理的补充方案...
分类:其他   时间:2015-03-08 20:13:21    收藏:0  评论:0  赞:0  阅读:210
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!