主要参考文档:OFDM移动通信技术原理与应用目录一、符号间干扰ISI 与 信道间干扰ICI 的概念二、保护间隔 减少 ISI三、循环前缀 减少 ICI四、保护间隔与循环前缀 加入后的OFDM系统框图五、选择 保护间隔 的方法======================================...
分类:
其他好文 时间:
2014-07-07 16:00:19
阅读次数:
295
添加WiFi以及访问网络的权限:操作外部存储设备文件:录音时需要的权限:录制视频时需要的权限:发送短信:收短信:收彩信:GPS:
分类:
移动开发 时间:
2014-07-07 15:59:39
阅读次数:
225
Problem Description:Given a binary tree containing digits from0-9only, each root-to-leaf path could represent a number.An example is the root-to-leaf ...
分类:
其他好文 时间:
2014-07-07 16:01:34
阅读次数:
223
使用Martix(android.graphics.Matrix)类中的postScale()方法结合Bitmap来实现缩放图片的功能Bitmap bmp = BitmapFactory.decodeResource(getResource(),R.drawalbe.icon1)int bmpwid...
分类:
其他好文 时间:
2014-07-07 16:00:55
阅读次数:
185
Problem Description:Given a stringsand a dictionary of wordsdict, determine ifscan be segmented into a space-separated sequence of one or more diction...
分类:
其他好文 时间:
2014-07-07 16:02:11
阅读次数:
219
Problem Description:Given a strings, partitionssuch that every substring of the partition is a palindrome.Return all possible palindrome partitioning ...
分类:
其他好文 时间:
2014-07-07 16:02:55
阅读次数:
259
Problem Description:Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.For example,"A man, a...
分类:
其他好文 时间:
2014-07-07 16:03:32
阅读次数:
168
相信喜爱编程,痴迷技术的你,肯定接触过甚至深爱着linux,甚至可能已经很熟悉linux了,可是linux那逗比的一面,你又知道多少。本文!纯粹娱乐!不喜勿喷!1.程序猿的愤慨!yes当我们再终端输入yes命令,你就回看到愤慨地y怒刷屏!2.小火车sl我相信ls你每天输入无数次,可是sl你又知道不知...
分类:
系统相关 时间:
2014-07-07 16:04:48
阅读次数:
188
Problem Description:Given an array of integers, every element appearstwiceexcept for one. Find that single one.Solution: 1 public int singleNumber(int...
分类:
其他好文 时间:
2014-07-07 16:04:12
阅读次数:
178
Problem Description:Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit...
分类:
其他好文 时间:
2014-07-07 16:05:24
阅读次数:
229
很多开发者表示,不知道Android的Drawable和Bitmap之间如何相关转换。下面Android123给大家两种比较简单高效的方法。一、Bitmap转DrawableBitmap bm=xxx; //xxx根据你的情况获取BitmapDrawable bd=BitmapDrawable(bm...
分类:
其他好文 时间:
2014-07-07 16:06:03
阅读次数:
183
前几天买了《Android软件安全与逆向分析》这本书,决定在这里记一些笔记。第一章介绍了如何搭建环境,此处略去;第二章开始讲分析Android程序。下面按顺序记录关键内容。--------------------------------------2.1.编写一个需要填写注册码的APK要破解要现有「...
分类:
移动开发 时间:
2014-07-07 16:07:24
阅读次数:
277
通过一个简单的例子来学习下面几种控件: 1.TextView:简单的文本显示控件 2.EditText:可以编辑的文本框 3.Button:按钮 4.Menu:这里指的是系统的Menu 5.Toast:消息提示控件,类似于MFc的tip(不知道理解的对不对) 顺便用到上一次学习的多个...
分类:
移动开发 时间:
2014-07-07 16:06:40
阅读次数:
224
Problem Description:Given a linked list, determine if it has a cycle in it.Follow up:Can you solve it without using extra space?Solution: 1 public bo....
分类:
其他好文 时间:
2014-07-07 16:08:01
阅读次数:
151
晚上的时候把项目目录直接剪切走了 早晨就打不开了去workspace看log .\workspace\.metadata\.log发现如下代码!MESSAGE Could not read metadata for '项目名字'.…………!ENTRY org.eclipse.core.jobs 2 ...
分类:
其他好文 时间:
2014-07-07 16:09:26
阅读次数:
201
Problem Description:Given an array of integers, every element appearsthreetimes except for one. Find that single one.Solution:1 Arrays.sort(A...
分类:
其他好文 时间:
2014-07-07 16:10:04
阅读次数:
174
本题就是求所有连续子数列的和开始拿到题目还以为求的时数列子集的和,认真看到题目才知道是连续子数列循环遍历即可 int findSum(vector array) { int sum = 0; for(int i = 0 ; i < array.size(); ++...
分类:
其他好文 时间:
2014-07-07 16:10:42
阅读次数:
179