http://www.gamedev.net/page/resources/_/technical/game-programming/understanding-component-entity-systems-r3013 The traditional way to implement game ...
分类:
其他好文 时间:
2015-02-10 15:07:41
阅读次数:
156
Implement pow(x,n).class Solution {public: double pow(double x, int n) { if(n==0)return 1.0; if(n0) { double half=p...
分类:
其他好文 时间:
2015-02-10 14:42:08
阅读次数:
191
Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Update (2014-11-02):The si...
分类:
其他好文 时间:
2015-02-10 14:38:29
阅读次数:
117
题目链接:Multiply Strings
Implement wildcard pattern matching with support for '?' and '*'.
'?' Matches any single character.
'*' Matches any sequence of characters (including the empty sequence).
...
分类:
其他好文 时间:
2015-02-10 09:16:45
阅读次数:
228
题意为判断一个字符串是否出现在另外一个字符串中,存在则返回其第一次出现的位置,否则返回-1.
class Solution {
public:
int strStr(char *haystack, char *needle) {
int Len1=strlen(haystack);
int Len2=strlen(needle);
if(Len1<Len2) re...
分类:
其他好文 时间:
2015-02-09 18:37:04
阅读次数:
131
Implement int sqrt(int x).Compute and return the square root of x.example:sqrt(3) = 1sqrt(4) = 2sqrt(5) = 2sqrt(10) = 3challenge:O(log(x))we start wit...
分类:
其他好文 时间:
2015-02-09 15:44:51
阅读次数:
194
How to use two stacks to implement a queue ?今天看到的有意思的问题题,哇咔咔,简直益智类哇~
"""
Code writer : EOF
Code date : 2015.02.08
Code file : Queue_by_two_stack.py
e-mail : jasonleaster@163.comCode descriptio...
分类:
其他好文 时间:
2015-02-09 00:48:41
阅读次数:
182
https://oj.leetcode.com/problems/implement-strstr/Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle ...
分类:
其他好文 时间:
2015-02-08 23:03:56
阅读次数:
218
欢迎转载,如有错误或疑问请留言纠正,谢谢
Sqrt(x)
Implement int sqrt(int x).
Compute and return the square root of x.
//vs2012测试代码
//using binary search to solve sqrt(x)
//alternative method: newton me...
分类:
其他好文 时间:
2015-02-08 16:55:02
阅读次数:
171
Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Update (2014-11-02):The si...
分类:
其他好文 时间:
2015-02-08 16:40:03
阅读次数:
98