码迷,mamicode.com
首页 >  
搜索关键字:shared elements tran    ( 12347个结果
自制带第三方库的FFmpeg SDK
一、第三方库的编译与安装 1. libfaac # tar -zxvf faac-1.28.tar.gz # cd faac-1.28 # ./configure --prefix=/opt/YOUR_SDK_INSTALL_DIRECTORY --enable-static --disable-shared # make; make install 2. libmp3lame...
分类:其他好文   时间:2014-05-10 10:23:00    阅读次数:401
Convert Sorted Array to Binary Search Tree
Given an array where elements are sorted in ascending order, convert it to a height balanced BST./** * Definition for binary tree * public class TreeN...
分类:其他好文   时间:2014-05-08 00:51:46    阅读次数:430
ELF格式的重定位原理分析
前面有篇文章分析了ELF格式,也只是让我们对目标文件有了一个大概的了解,并没有说明一个十分重要的问题:重定位,今天重新看了下重定位的资料,终于弄懂了重定位的过程,下面来做一个分析。 我们将使用下面两个源代码中的文件a.c和b.c展开分析: //a.c extern int shared; int main() { int a=100; swap(&a,&shared); } //b.c i...
分类:其他好文   时间:2014-05-07 22:35:28    阅读次数:328
第6条:消除过期对象的引用
让咱们先来看一下数组实现栈的例子:package chaper1;import java.util.Arrays;import java.util.EmptyStackException;public class Stack_Test00 { private Object[] elements...
分类:其他好文   时间:2014-05-07 12:38:09    阅读次数:257
Leetcode | Subsets I & II
Subsets IGiven a set of distinct integers, S, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution set m...
分类:其他好文   时间:2014-05-07 11:13:33    阅读次数:299
智能指针 shared_ptr 解析
最近正在进行《Effective C++》的第二遍阅读,书里面多个条款涉及到了shared_ptr智能指针,介绍的太分散,学习起来麻烦,写篇blog整理一下。 LinJM   @HQU 2014/05/05 shared_ptr是一个智能指针。在C++ 11颁布之前,它包含在TR1(Technical Report 1)当中,现在囊括在C++11的标准库中。 智能指针 智能指...
分类:其他好文   时间:2014-05-07 05:50:43    阅读次数:437
libc.so.6 动态库被重命名,命令不能执行
不小心重命名了libc.so.6动态库,运行命令 #mv /lib/libc.so.6 /lib/libc.so.6.back #ls ls: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory 各种命令都不好...
分类:其他好文   时间:2014-05-07 04:49:53    阅读次数:319
【Leetcode】3Sum
【Question】 Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero. Note: Elements in ...
分类:其他好文   时间:2014-05-06 14:57:29    阅读次数:318
快速部署Sharepoint项目
1.新建CopyToLayouts.bat文件保存到项目Web解决方案根目录下,写入以下内容:ECHO OFF@SET TEMPLATE="C:\program files\common files\microsoft shared\web server extensions\14\Template...
分类:其他好文   时间:2014-05-06 14:24:59    阅读次数:306
easyUi 的DataGrid的绑定
html代码:@{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Index_Layout.cshtml";} GridView @{ Layout = null;}...
分类:其他好文   时间:2014-05-06 12:59:26    阅读次数:384
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!