码迷,mamicode.com
首页 > 2015年02月12日 > 全部分享
字符串的输出处理
字符串的输出处理        我对字符串的输出是比较头疼的,就是在技巧方面把握的不好,记得刚开始接触字符串的时候,就是要正着输入倒着输。。。。。。都不会,就是找不到技巧,下面我会从简单到复杂分析一下这种题型,可能不全,请见谅。 一. 先说一下题意,就是随便输入一句话如“hello my friend”,输出的时候是“dneirf ym olleh”,大家看出什么了没有,就是正着输入,倒着输...
分类:其他好文   时间:2015-02-12 22:55:08    阅读次数:328
UVA - 11987 - Almost Union-Find (又是并查集~)
UVA - 11987 Almost Union-Find Time Limit: 1000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description Problem A Almost Union-Find ...
分类:其他好文   时间:2015-02-12 22:55:58    阅读次数:302
【ACM】----杭电oj 2097
Sky数 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 15579    Accepted Submission(s): 8981 Problem Description Sky从小喜欢奇特的东西,而且天生对数字特别敏感...
分类:其他好文   时间:2015-02-12 22:54:25    阅读次数:323
Android--数据库操作辅助类:SQLiteOpenHelper
1.MyDatabaseHelper.java代码如下: package org.lxh.demo; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; import ...
分类:移动开发   时间:2015-02-12 22:54:26    阅读次数:233
Java观察者模式 : Observer / Observable
/** Java观察者模式的场景:一个女孩洗澡,被很多男孩偷看。 女孩洞察后,搜索坏男孩,然后继续洗澡。 三个类:Boy,Girl还有主类MainClass。 */ /* 男孩 Boy.java */ import java.util.Observable; import java.util.Observer; public class Boy implements Observer{ ...
分类:编程语言   时间:2015-02-12 22:53:25    阅读次数:219
Android Drawable 转化成 Bitmap
/*Java代码 将Drawable转化为Bitmap */ Bitmap drawableToBitmap(Drawable drawable) { int width = drawable.getIntrinsicWidth(); int height = drawable.getIntrinsicHeight(); Bitmap bitmap...
分类:移动开发   时间:2015-02-12 22:54:32    阅读次数:202
替换ExpandableListView右边箭头Group Indicator(小图标)
?? 先在drawable目录下建立xml文件: <item android:state_expanded="false" android:drawable="@drawable/d...
分类:其他好文   时间:2015-02-12 22:52:47    阅读次数:232
Android任意时刻、任意代码处全屏
public void toggleFullscreen(boolean fullScreen) { //fullScreen为true时全屏,否则相反 WindowManager.LayoutParams attrs = getWindow().getAttributes(); if (fullScreen) { attrs...
分类:移动开发   时间:2015-02-12 22:54:22    阅读次数:290
162.Find Peak Element(二分查找)
A peak element is an element that is greater than its neighbors. Given an input array where num[i] ≠ num[i+1], find a peak element and return its index. The array may contain multiple peaks, in that...
分类:其他好文   时间:2015-02-12 22:53:43    阅读次数:207
8.String to Integer (atoi)
Implement atoi to convert a string to an integer. Hint: Carefully consider allpossible input cases. If you want a challenge, please do not see below and askyourself what are the possible input cases....
分类:其他好文   时间:2015-02-12 22:52:32    阅读次数:197
26.Remove Duplicates from Sorted Array
Given a sorted array, remove the duplicates in place such that eachelement appear only once and return the new length. Do not allocate extra space for another array, you must do this in placewith con...
分类:其他好文   时间:2015-02-12 22:52:00    阅读次数:143
121.Best Time to Buy and Sell Stock
Say you have an array for which the ith element isthe price of a given stock on day i. If you were only permitted to complete at most one transaction (ie, buyone and sell one share of the stock), des...
分类:其他好文   时间:2015-02-12 22:51:58    阅读次数:178
48.Rotate Image
You are given an n x n 2D matrixrepresenting an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do this in-place? HideTags  Array #pragma once #include #include using n...
分类:其他好文   时间:2015-02-12 22:52:50    阅读次数:157
学术休假期 项目2-猴子选大王 (动态链表)
链表关系好混乱 /* *Copyright (c)2014,烟台大学计算机与控制工程学院 *All rights reserved. *文件名称:猴子选大王.cpp *作 者:冷基栋 *完成日期:2015年2月12日 *版 本 号:v1.0 * *问题描述:一群猴子,编号是1,2,3 ...m,这群猴子(m个)按照1-m的顺序围坐一圈。从第1只开始数,每数到第n个,该猴子就要离开此圈,这样...
分类:其他好文   时间:2015-02-12 22:52:07    阅读次数:230
不要把自己定位的太高
记得,不要太看得起自己,其实自己没有什么了不起的。这几天发生了很多,别人也和我说了很多,我自己其实也有体会,自己也有些触动,到现在我才明白,我就是对自己的定位太高了,觉得自己好像很行的样子,其实呢,自己是不行的,就像在编程上一样,记得在学校的时候,XX就老说我很好,相比新生而言,说的次数多了,也就对我潜移默化的产生了些许的影响,再加上我在班上是比较优秀的,在很多方面,尤其是学习方面,我。。。。。。...
分类:其他好文   时间:2015-02-12 22:52:07    阅读次数:171
快速排序C实现(阿里巴巴 2012年笔试题)
《快速排序C实现》 这篇文章最早是我原创,2012年发表在当时我的百度空间的一篇文章,没想到机缘巧合,此题竟然无意中被阿里巴巴选录,被改成填空题,成为当年阿里巴巴全国校招的笔试题,机缘巧合,可叹可叹!现在博客搬家,我重新把这篇文章保持原貌、原封不动从百度空间搬到CSDN新的博客。 #include /*输出*/ void show(int [],int); void quick...
分类:编程语言   时间:2015-02-12 22:51:40    阅读次数:328
poj1222 EXTENDED LIGHTS OUT
EXTENDED LIGHTS OUT Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 7202   Accepted: 4718 Description In an extended version of the game Lights Out, is a p...
分类:其他好文   时间:2015-02-12 22:51:07    阅读次数:254
1634条   上一页 1 2 3 4 5 6 ... 97 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!