码迷,mamicode.com
首页 > 其他好文
引用项目文件找不到,无法访问资源
springMVC org.springframework.web.servlet.DispatcherServlet contextConfigLocation classpath:springMVC.xml 1 springM...
分类:其他好文   时间:2015-01-13 14:04:49    阅读次数:114
Two Sum
https://oj.leetcode.com/problems/two-sum/Given an array of integers, find two numbers such that they add up to a specific target number.The function t...
分类:其他好文   时间:2015-01-13 14:07:07    阅读次数:130
数据安全分析与防范
分类:其他好文   时间:2015-01-13 14:05:49    阅读次数:125
HDOJ 2010
//多次测试,发现原因是reNo,reSp如果不在循环体中初始化为0,多次输入数据会错误。//解决方法一如下。二直接把reNo,reSp的定义放在while里面#include "stdio.h"int main(void){ int m, n; int bw, sw, gw; int reNo =...
分类:其他好文   时间:2015-01-13 14:05:07    阅读次数:197
HDOJ 2006
#include "stdio.h"int main(void){ int i, j, num; int OddSum = 1; while(scanf("%d", &j) != EOF){ for(i=0; i<j; i++){ scanf("%d", &num); if(num...
分类:其他好文   时间:2015-01-13 14:06:03    阅读次数:153
RETINA显示屏下ICON优化方法
RETINA显示屏下ICON优化方法
分类:其他好文   时间:2015-01-13 14:05:53    阅读次数:132
结构体位域一题
判断以下题目是否正确,不正确指出错误并改正。#include using namespace std;struct a { int x:1; int y:2; int z:33;};int main(){ a d; cout << &d << endl; ...
分类:其他好文   时间:2015-01-13 14:04:53    阅读次数:108
Cloudera Hadoop 4 实战视频教程
Cloudera Hadoop 4 实战课程(Hadoop 2.0、集群界面化管理、电商在线查询+日志离线分析)适合人群:中级课时数量:42课时用到技术:CDH4,Cloudera Manager,Hive,HBase,Sqoop涉及项目:电商业日志流量分析项目咨询qq:1840215592Clou...
分类:其他好文   时间:2015-01-13 14:03:03    阅读次数:151
HDOJ 1108
#include "stdio.h"#include "stdlib.h"int gcd(int i, int j); //最大公约数 int tlcm(int i, int j, int k); //最小公倍数 int main(void){ int i, j, k, gcdi, tlc...
分类:其他好文   时间:2015-01-13 14:03:53    阅读次数:119
HDOJ 2008
#include "stdio.h"int main(void){ int num; while(scanf("%d", &num), num){ int i; double number; int Zcount = 0, Fcount = 0, zero = 0; for(i=0; ...
分类:其他好文   时间:2015-01-13 14:03:31    阅读次数:128
HDOJ 2004
#include"stdio.h"int main(void){ int i; while(scanf("%d", &i) != EOF){ if(i 100){ printf("Score is error!\n"); } else{ i = i / 10; swi...
分类:其他好文   时间:2015-01-13 14:02:31    阅读次数:109
国内车联网行业 2015年发展趋势
本文全文转载自:http://forum.eet-cn.com/BLOG_ARTICLE_21510.HTM?click_from=8800121758,9950093147,2015-01-07,EECOL,FORUM_ALERT&utm_source=Forum_Alert&utm_medium...
分类:其他好文   时间:2015-01-13 14:01:59    阅读次数:202
STM32+FreeRtos+Lwip移植笔记Ⅱ
现在,遇到了串口调试的问题。串口传输有两种方案:1)中断函数接收完完整的frame之后用二值信号量触发阻塞的解析数据进程;2)新建队列,中断中将接收的数据send到队列,解析进程读队列。
分类:其他好文   时间:2015-01-13 14:03:34    阅读次数:212
[leetcode] Letter Combinations of a Phone Number
Letter Combinations of a Phone NumberGiven a digit string, return all possible letter combinations that the number could represent.A mapping of digit ...
分类:其他好文   时间:2015-01-13 14:03:28    阅读次数:226
LED显示屏厂家应该走出“大同小异”的“怪圈”
我们处于满目琳琅的LED显示屏的世界,LED显示屏林立在大街小巷,走在陌生的街道,如果以显示屏为路标,难免会有身在迷宫的错觉。街道上的显示屏几乎大同小异,让人很难分清是曾来过还是未路过,看整个LED行业的显示屏,在性能参数差不多的情况下,我们很难找到两块差异明显的LED显示屏,这也说明LED行业迈入...
分类:其他好文   时间:2015-01-13 14:02:24    阅读次数:107
Remove Duplicates from Sorted List
https://oj.leetcode.com/problems/remove-duplicates-from-sorted-list/Given a sorted linked list, delete all duplicates such that each element appear on...
分类:其他好文   时间:2015-01-13 14:03:09    阅读次数:114
poj: 1005
简单题 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define PI 3.1415926 8 9 int N;10 11 int main()12 {13 c...
分类:其他好文   时间:2015-01-13 14:01:59    阅读次数:121
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!