1.在后台绑定下拉框再返回到前台protected StringBuilder sq = new StringBuilder();//为了在前台绑定 protected void Page_Load(object sender, EventArgs e) { if...
分类:
Web程序 时间:
2014-07-24 10:02:13
阅读次数:
247
一 Words1 gobble up 吞并 e.g. Banc One of Ochio has built an empire in the midwest by gobbling up smaller banks.俄亥俄州第一银行通过兼并一些小银行成为中西部地区的巨头2 gobble up耗费 ...
分类:
其他好文 时间:
2014-07-24 10:02:04
阅读次数:
191
每个参与过开发企业级 web 应用的前端工程师或许都曾思考过前端性能优化方面的问题。我们有雅虎 14 条性能优化原则,还有两本很经典的性能优化指导书:《高性能网站建设指南》、《高性能网站建设进阶指南》。经验丰富的工程师对于前端性能优化方法耳濡目染,基本都能一一列举出来。这些性能优化原则大概是在 7 ...
分类:
其他好文 时间:
2014-07-24 10:01:53
阅读次数:
289
实现: 1 #ifndef AVL_TREE_H 2 #define AVL_TREE_H 3 4 #include "dsexceptions.h" 5 #include // For NULL 6 using namespace std; 7 8 // AvlTree...
分类:
其他好文 时间:
2014-07-24 10:01:43
阅读次数:
317
在qq等聊天软件中都有发送窗口抖动功能,现在在qt下实现该功能。用到的类主要有 QTimer 和 QPointQTimer 类的作用是启用定时器,在不同时刻使窗口处于不同位置,从而得到的效果就是窗口的抖动。 QPoint 类的作用是定位窗口的位置(坐标)。源代码如下://chardialog.h#i...
分类:
其他好文 时间:
2014-07-24 10:01:13
阅读次数:
224
题目:在字符串中找出第一个只出现一次的字符。如输入"abaccdeff",这输出'b'// 第一个只出现一次的字符#include char first_not_repeat_char(char *s){ int count[256]={0}; char *pkey; if( s=...
分类:
其他好文 时间:
2014-07-24 09:59:53
阅读次数:
200
iOS开发项目篇—54"设置"界面的搭建一、实现新建一个设置控制器,当点击“我”控制器导航栏“设置”按钮时,即跳转到该界面1.在“我”控制器中对导航栏“设置按钮”的处理 1 // 2 // YYProfileViewController.m 3 // 4 5 #import "YYProfile.....
分类:
移动开发 时间:
2014-07-24 09:58:46
阅读次数:
350
// 从第一个字符串中删除第二个字符串中出现过的所有字符#include char* remove_second_from_first( char *first, char *second ){ if( first == NULL || second == NULL ) { ...
分类:
其他好文 时间:
2014-07-24 09:58:23
阅读次数:
163
微软近期Open的职位:Job posting title: Senior Software Development EngineerLocation: China, BeijingDivision: Operations System Group Engineering Group Overvie...
Reverse Words in a StringGiven an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".click...
分类:
其他好文 时间:
2014-07-24 09:57:33
阅读次数:
179