Fulfill Your Ambitions with Open SourceRichard Monson-HaefelCHANCES ARE PRETTY GOOD that you are not developing software at work that fulfills your most ambitious software development daydreams. Perhap...
分类:
其他好文 时间:
2015-04-25 10:49:31
阅读次数:
124
When you have to build a web application, you are often asked to add search. The magnifying glass is something that we now add to wireframes without even knowing what we are going to search. Search...
分类:
其他好文 时间:
2015-04-25 00:28:52
阅读次数:
331
【题目链接】click here~~
【题目大意】这个题说的是有m个小朋友(boy),老师要选择尽可能多的小朋友,有一个规则,他们要有关系(比如a,b,c,如果a认识b,b认识c,那么a和c也算有关系)输入他们的关系图,询问最多可以选多少小朋友
【解题思路】把有关系的小朋友加入一个集合中,最后只要统计哪个集合的元素多就行了
代码:
#include
using namespace s...
分类:
其他好文 时间:
2015-04-24 19:09:46
阅读次数:
134
1.HDU 4722 good numbers:
题意:给出一个区间【A,B】,求出区间内有多少个数的各位的和加起来模10等于0的数有多少个。
解法:这是一个数位DP简单入门题,简单的DFS+数组记忆化搜索就可以。姿势是自己写的。。感觉略搓,做到第三个数位DP题的时候看到了别人的姿势,学习了。
代码:
#include
#include
#include
#include
#inc...
分类:
其他好文 时间:
2015-04-24 09:09:23
阅读次数:
165
hello,今天我有了自己的blog,对C,C++,linux比较感兴趣,目前还只是初级学习阶段( code_learner),希望大家多多帮助,多多支持。 就读的大学:大连理工。 就读专业:软件工程(数字媒体)。 喜欢的颜色:黄,蓝... 个人爱好:电影,画画,音乐。 Good go...
分类:
其他好文 时间:
2015-04-23 15:31:32
阅读次数:
121
/* 输出
**********
very good!
**********
*/
#include
int main()
{
int i;
for( i = 0; i < 10; i++)
{
printf("*");
}
printf("\n");
printf("very good!\n");
for( i = 0; i < 10; i++)
{
...
分类:
编程语言 时间:
2015-04-23 13:26:03
阅读次数:
113
// 先后输出BOY三个字符
#include
int main()
{
char a = 'B';
char b = 'O';
char c = 'Y';
putchar(a);
putchar(b);
putchar(c);
printf("\n");
return 0;
}...
分类:
编程语言 时间:
2015-04-23 13:20:52
阅读次数:
276
// 从键盘输入BOY三个字符,然后把它们输出到屏幕
#include
int main()
{
char a,b,c;
printf("请输入三个字符:");
a = getchar();
b = getchar();
c = getchar();
putchar(a);
putchar(b);
putchar(c);
putchar('\n');
return 0;...
分类:
编程语言 时间:
2015-04-23 13:18:47
阅读次数:
171
Memory Layout (Virtual address space of a C process)分类:C语言基础2012-12-06 23:162174人阅读评论(0)收藏举报found a good example to demostrate the memory layout and i...
分类:
其他好文 时间:
2015-04-23 09:24:12
阅读次数:
139
Beautiful numbers
Time Limit:4000MS Memory Limit:262144KB 64bit IO Format:%I64d
& %I64u
Submit Status Practice CodeForces
55D
Description
Volodya is an odd boy and his taste ...
分类:
其他好文 时间:
2015-04-22 18:32:11
阅读次数:
208