1 2 3 4 5 ··· 9 下一页
摘要: // BinarySearch.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include <iostream>using namespace std; int BinarySearch(int a[],int s,int e,int value){ int min... 阅读全文
posted @ 2010-07-21 20:24 gracestoney 阅读(81) 评论(0) 推荐(0) 编辑
摘要: // BubbleSort_Cplusplus.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include <iostream>using namespace std; void sort(int a[],int length) { int j=0; int i=0... 阅读全文
posted @ 2010-07-21 17:36 gracestoney 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 1. Why did you want to be a QA? How you make your choice? It happened 2 years ago. At that time, I decided to go to Shanghai for some personal factors. Actually, I applied for both the position dev a... 阅读全文
posted @ 2010-07-20 22:42 gracestoney 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 题目:1、面向对象的基本特性,并描述一下?2、重载和重写的区别3.、C++中4种强制类型转换的写法(我只知道一种,大家都知道的那种,所以就没做这题)4、指针和引用的区别5、sizeof用法(给出程序写结果,还是看《程序员面试宝典》)6、获得给定数组中第二大的元素的值sec_find(int data[],int count),时间复杂度O(n)7、其它不记得了 必看的书《程序员面试宝典》。必备基... 阅读全文
posted @ 2010-07-16 20:01 gracestoney 阅读(71) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/Oneil_Sally/archive/2008/12/03/3440784.aspx 个人觉得这篇文章是网上的介绍有关KMP算法更让人容易理解的文章了,确实说得很“详细”,耐心地把它看完肯定会有所收获的~~,另外有关模式函数值next[i]确实有很多版本啊,在另外一些面向对象的算法描述书中也有失效函数 f(j)的说法,其实是一个意思,即next[j]=f... 阅读全文
posted @ 2010-07-15 17:21 gracestoney 阅读(95) 评论(0) 推荐(0) 编辑
摘要: link* mid(link* head){ link* p1,*p2; p1=p2=head; if(head==null||head->next==null) { return head; } do { p1=p1->next; p2=p2->next->next; } while(p2&&p2->next) return p1;} //冒泡排... 阅读全文
posted @ 2010-07-15 00:14 gracestoney 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 发信人:reniking(没~~),信区:Job 标题:[跟风]发百度软件质量部面经 发信站:北邮人论坛(ThuOct2514:53:022007),站内 这是我的人生第一面,还以为被鄙视了,接到电话后异常兴奋,先把笔试卷子上的题又重新 想了一遍,可惜面试一点都没用上。今天去的时候看好多人去面,新产品的是群面,大家都 西装革履的。软件质量部是单面。面试我的是一个JJ,年龄相仿的,虽然去之... 阅读全文
posted @ 2010-07-14 20:00 gracestoney 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2010-07-04 18:44 gracestoney 阅读(85) 评论(0) 推荐(0) 编辑
摘要: http://blogs.msdn.com/b/csharpfaq/archive/2010/06/01/parallel-programming-in-net-framework-4-getting-started.aspx What happened? Well, as I mentioned earlier, the Task Parallel Library still uses thre... 阅读全文
posted @ 2010-07-04 15:41 gracestoney 阅读(93) 评论(0) 推荐(0) 编辑
摘要: OO-封装,继承,多态,抽象 策略模式-strategy c# 3.0 design patterns Func和Action http://www.cnblogs.com/jams742003/archive/2009/10/31/1593393.html Func<int ,bool> d= x=>x >10?true:false; int? Nullable<i... 阅读全文
posted @ 2010-07-04 15:40 gracestoney 阅读(75) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 9 下一页