Visitors hit counter dreamweaver
摘要: 转自:http://myclicki.blogbus.com/logs/17335812.html clicki可以通过插件(widget)的方式在blogger自己的网站上展示出自己想要了解的数据。所有页面上的用户访问数据,blogger在自己的网站上就可以看到大部分统计数据,而不用登录到clicki的后台查看数据报表,极大地方便了blogger的操作。 blogger在自己的网页上可以看到以下数据: 当前页面的站外来源统计:访问者是从哪里来到这个页面的?搜索引擎还是其他网站?如果是通过搜索引擎过来的,是哪个搜索引擎?用户输入的关键字是什么? 当前页面的访问者点击统计:clicki可以统计. 阅读全文
posted @ 2012-03-31 12:27 Jason Damon 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 把出现过的每个字母映射到对应的数字,这样字符串就变成相应的nc进制数,然后把它转换成10进制,并放入hash[]中,如果是第一次放入,则总数加一。 例如:(此分析出自http://www.cnblogs.com/lxf90/archive/2011/04/19/2021280.html。感谢他。) 3 4daababacd = 3a = 0b = 1c = 2daa=300(4进制)转换为十进制: daa = 3 * 4 ^ 2 + 0 * 4 ^ 1 + 0 * 4 ^ 0 = 48然后if(!hash[48]) hash[48]++;#include <stdio.h>#inc 阅读全文
posted @ 2012-03-31 12:14 Jason Damon 阅读(970) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <fstream>#include <string>using namespace std;char dict[10005][16];char word[51][16];int count1=0,count2=0;bool Replace(char *d,char *w){ int i; bool flag=false; for(i=0; i<strlen(w); i++) { if(d[i]!=w[i] && flag==false) //不相等 { ... 阅读全文
posted @ 2012-03-31 10:02 Jason Damon 阅读(484) 评论(0) 推荐(0) 编辑