发布时间:2015-06-04 18:36:13
此题太简单。。。。但是RE了两次,因为题目不给数据大小,从1000 到 10000 再到10000 就过了。#include <stdio.h>#include <string.h>int main(){ char str1[100000]; char str2[100000];.........【阅读全文】
发布时间:2015-05-30 16:08:36
转载自:http://blog.csdn.net/yizhou2010/article/details/6178115Windows提供了一个模拟键盘API函数Keybd_event(),使用该函数可以相应的屏蔽键盘的动作。Keybd_event()函数能触发一个按键事件,也就是说会产生一个WM_KEYDOWN或WM_KEYUP消息。 该函数原型如下: VOID keybd_event( BYTE bV.........【阅读全文】
发布时间:2015-05-29 12:30:09
这道题的意思是给定一个环状DNA分子,求按字典序排列的最小序列,终点始终在起点的顺时针方向。代码如下:#include <stdio.h> #include <string.h>char sequence[105];int main(void){ int t, i;&n.........【阅读全文】