码迷,mamicode.com
首页 > 2015年10月24日 > 全部分享
Codeforces548D:Mike and Feet(单调栈)
Mike is the president of country What-The-Fatherland. There arenbears living in this country besides Mike. All of them are standing in a line and they...
分类:其他好文   时间:2015-10-24 13:02:06    阅读次数:246
String课后作业
(一)、字符串加密设计思想:加密字符串时,将用户输入的字符串转换成字符数组,分别加三,最后将它们相加得到新的字符串,进行输出。解密亦然。程序流程图:源代码://余尉兴 字符串加密 20151020import javax.swing.*;public class Secret { public...
分类:其他好文   时间:2015-10-24 12:59:23    阅读次数:168
MySQL
创建数据库:create database 库名;查询数据库:show databases;删除数据库:drop database 库名;使用某个数据库:use 库名;查看表:show tables;
分类:数据库   时间:2015-10-24 13:00:40    阅读次数:227
WPF三大模板简介
介绍了WPF三大模版的基本使用。
分类:Windows程序   时间:2015-10-24 13:00:13    阅读次数:210
Roman Roulette(约瑟夫环模拟)
Roman RouletteTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 286Accepted Submission(s): 105Proble...
分类:其他好文   时间:2015-10-24 12:59:53    阅读次数:401
Visual Studio 2015 的安装与使用
为什么要使用Visual Studio 2015? 它是中文的、界面友好、自动补全、实时语法错误提示(上图中波浪线部分)、单步调试……最重要的社区版是免费的!所以你不必再昧着良心使用不合法、老旧的不兼容当代系统的VC++6.0,Come to VS2015 and enjoy it! 接下来我将告诉...
分类:其他好文   时间:2015-10-24 12:58:26    阅读次数:89693
[C++] Operator Overload
Operator Overload operator = must be overload as a member function
分类:编程语言   时间:2015-10-24 13:00:08    阅读次数:161
ZOJ 1610 Count the Colors
段树:延迟标志+暴力更新我记得刚学段树做的时候这个话题WA一个版本。。。。。如今,每分钟获得。。。。Count the ColorsTime Limit:2 Seconds Memory Limit:65536 KBPainting some colored segments on a line, ...
分类:其他好文   时间:2015-10-24 12:58:09    阅读次数:279
JNI Local Reference Changes in ICS
[This post is by Elliott Hughes, a Software Engineer on the Dalvik team.—TimBray]If you don’t write native code that uses JNI, you can stop reading no...
分类:其他好文   时间:2015-10-24 12:57:41    阅读次数:314
sql-3
1----三张表一起查询:select * from EnglishScores,Scores,StuInfor2-------update-set和delete-where原来的表:update-set:第一步:insert into EnglishScores (StuName,Scores,S...
分类:数据库   时间:2015-10-24 12:57:31    阅读次数:230
Launch screens may not use instances of IBUIStoryboardEntryPointIndicator.
解决方法:删除LaunchScreen.storyboard文件。参考:[http://stackoverflow.com/questions/32444733/launch-screen-illegal-configuration-xcode-6-4]
分类:其他好文   时间:2015-10-24 12:58:11    阅读次数:1440
How To Create A Local Repository For SUSE Linux
原文地址:http://candon123.blog.51cto.com/704299/1009294/As you know,you can use the yum command to install packages on redhat linux.It's a powerful tool t...
分类:系统相关   时间:2015-10-24 12:56:14    阅读次数:323
课后作业加密
import javax.swing.JOptionPane;public class Jiami {public static void main(String[] args){ String s=JOptionPane.showInputDialog("请您输入字符串:");char charA...
分类:其他好文   时间:2015-10-24 12:56:54    阅读次数:228
10月24程序员日:请对你身边的程序员好一点
在USNews今年1月公布的2015年全美最佳职业TOP100中,软件开发名列第三,仅低于牙医和执业护士(Nurse practitioners)
分类:其他好文   时间:2015-10-24 12:56:55    阅读次数:216
Comparator 和 Comparable
Comparable 简介Comparable 是排序接口。若一个类实现了Comparable接口,就意味着“该类支持排序”。 即然实现Comparable接口的类支持排序,假设现在存在“实现Comparable接口的类的对象的List列表(或数组)”,则该List列表(或数组)可以通过 Colle...
分类:其他好文   时间:2015-10-24 12:57:53    阅读次数:222
利用UIWebView打造一个炫酷的视频背景视图(OC & Swift)
http://www.cocoachina.com/ios/20151023/13860.html2015-10-6更新:适配 Swift2.0如有需要,可以通过pjin.elvin@gmail.com发私信或联系我。注:使用GIF动态图片只是一种可行的方式达到该效果,并非唯一解决方案。我个人更倾向...
分类:编程语言   时间:2015-10-24 12:55:15    阅读次数:286
Java中String.equals()方法的实现代码
java中String类里的String.equals()方法: 源代码:public boolean equals(Object anObject){ //如果是同一个对象 if (this == anObject) { retur...
分类:编程语言   时间:2015-10-24 12:56:56    阅读次数:211
1003条   上一页 1 ... 38 39 40 41 42 43 44 ... 59 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!