• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






PrivateCpp

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理

2016年7月5日

[转]64位gcc编译32位汇编
摘要: 本文转载自:http://www.cnblogs.com/chobits/p/4264724.html 由于使用as和ld来编译链接汇编程序,在使用C库的时候比较麻烦,需要输入比较多的指令,所以使用gcc进行编译链接。由于书中内容是32位汇编程序,但是机器使用的是64位操作系统,自带的gcc也是64 阅读全文
posted @ 2016-07-05 15:58 PrivateCpp 阅读(1997) 评论(0) 推荐(0)
 

2016年6月26日

LeetCode Problem 4.Median of Two Sorted Arrays
摘要: There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity sh 阅读全文
posted @ 2016-06-26 14:37 PrivateCpp 阅读(170) 评论(0) 推荐(0)
 

2016年6月25日

LeetCode Problem 3.Longest Substring Without Repeating Characters
摘要: Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng 阅读全文
posted @ 2016-06-25 22:17 PrivateCpp 阅读(163) 评论(0) 推荐(0)
 

2016年6月24日

LeetCode Problem 2.Add Two Numbers
摘要: You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single 阅读全文
posted @ 2016-06-24 11:32 PrivateCpp 阅读(141) 评论(0) 推荐(0)
 
LeetCode Problem 1.Two Sum
摘要: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文
posted @ 2016-06-24 10:00 PrivateCpp 阅读(92) 评论(0) 推荐(0)