- 博客(2)
- 收藏
- 关注
原创 Unix系统分叉函数fork()
最近一直在学习操作系统的知识,今天闲逛在BBS上看到一道题挺有意思: int main() { int x = 5; if(fork()) { x += 30; cout<<x<<endl; } else { cout<<x<<endl; } return 0; }问题是输出是什么? 于是查询fork()函数,可知: 头文件: #include
2014-03-23 11:32:48 867
原创 leetcode -- Reverse Integer
#include #include #include #include using namespace std;class Solution {public: int reverse(int x) { int length = 0; int result = 0; int temp = abs(x); bool isNeg = x >= 0 ? false : true; while(temp)
2014-03-23 09:05:32 404
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人