/**
* @Description 颠倒数组排列顺序
* @author SEELE
* @date 2017年8月17日 上午10:56:17
* @action sortArr
*/
public static void sortArr() {
int[] b = new int[6];
int[] a = { 1, 2, 3, 4, 5, 6, 7 };
for (int i = 0; i < a.length / 2; i++) {
int temp = a[a.length - 1 - i];
a[a.length - 1 - i] = a[i];
a[i] = temp;
}
System.out.println(Arrays.toString(a));
} /**
* @Description 判读一个数是否是素数
* @author SEELE
* @date 2017年8月17日 上午11:00:02
* @action sushu
*/
public static void sushu() {
int N = 17;
if (N < 2) {
System.out.println("不是素数");
}
for (int i = 2; i * i <= N; i++) {
if (N % i == 0) {
System.out.println("不是素数");
return;
}
}
System.out.println("是素数");
} /**
* @Description 计算平方根,牛顿迭代法
* @author SEELE
* @date 2017年8月17日 上午11:16:17
* @action sqrt
* @param c
* @return
*/
public static double sqrt(double c) {
if (c < 0) {
return Double.NaN;
}
double err = 1e-15;
double t = c;
while (Math.abs(t - c / t) > err * t) {
t = (c / t + t) / 2.0;
}
return t;
} /**
* @Description (自写)二分查找,先做一个从小到大的数组排序
* @author SEELE
* @date 2017年8月17日 下午2:33:52
* @action erfenfind
*/
public static void erfenfind() {
int[] a = { 54, 54, 56, 56, 78, 8, 3232, 56, 546, 546, 46, 7854, 12, 3255, 58, 678, 585, 23, 45, 3, 6, 8, 89,
6 };
System.out.println(Arrays.toString(a));
int find = 8;
Arrays.sort(a);
System.out.println(Arrays.toString(a));
int lo = 0;
int hi = a.length - 1;
while (lo <= hi) {
int mid = lo + (hi - lo) / 2;
if (find > a[mid]) {
lo = mid + 1;
} else if (find < a[mid]) {
hi = mid - 1;
} else {
System.out.println(mid + "---" + a[mid]);
break;
}
}
} /**
* 将一个正整数的转换成二进制,并已字符串打印出来
*/
public static void binaryString() {
long N = 5646753274687L;
String s = "";
for (long n = N; n > 0; n /= 2)
s = (n % 2) + s;
System.out.println(s);
} /**
* 1.1.13 编写一段代码,打印出一个M 行N 列的二维数组的转置(交换行和列)。
*/
public static void MNtoNM() {
int b = 0;
int m = 10;
int n = 3;
int[][] a = new int[m][n];
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < a[i].length; j++) {
a[i][j] = b;
b++;
}
}
for (int[] is : a) {
for (int i : is) {
System.out.print(i+" ");
}
System.out.println();
}
int[][] c = new int[n][m];
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
c[i][j] = a[j][i];
}
}
System.out.println("-----------分割------------");
for (int[] is : c) {
for (int i : is) {
System.out.print(i+" ");
}
System.out.println();
}
}

算法(第4版)Robert Sedgewick 刷题 第一章(1)的更多相关文章

  1. 算法(第4版) (Robert Sedgewick / Kevin Wayne 著)

    第1章 基础 第2章 排序 第3章 查找 第4章 图 第5章 字符串 第1章 基础 public class Bag<T> : IEnumerable<T> { ]; ; pu ...

  2. 周刷题第一期总结(two sum and two numbers)

    由于深深的知道自己是事件驱动型的人,一直想补强自己的薄弱环节算法,却完全不知道从哪里入手.所以只能采用最笨的办法,刷题.从刷题中遇到问题就解决问题,最后可能多多少少也能提高一下自己的渣算法吧. 暂时的 ...

  3. python在leecode刷题-第一题和第七题

    class Solution(object): def twoSum(self, nums, target): """ :type nums: List[int] num ...

  4. 牛客SQL刷题第一趴——非技术入门基础篇

    user_profile表: id device_id gender age university province 1 2138 male 21 北京大学 Beijing 2 3214 male   ...

  5. 学习笔记(一)--->《Java 8编程官方参考教程(第9版).pdf》:第一章到六章学习笔记

    注:本文声明事项. 本博文整理者:刘军 本博文出自于: <Java8 编程官方参考教程>一书 声明:1:转载请标注出处.本文不得作为商业活动.违者本人不负法律责任.违法者自负一切法律责任. ...

  6. leetcode刷题第一日<两数和问题>

    开始就用到了c++的哈希表是真的恶心,首先学习一波基础知识 https://blog.csdn.net/u010025211/article/details/46653519 下面放下大佬的代码 cl ...

  7. LeetCode刷题第一天

    1 . 两数之和 给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标. 你可以假设每种输入只会对应一个答案.但是,你不能重复利用 ...

  8. 《数据结构与算法(C语言版)》严蔚敏 | 第五章 建立二叉树,并完成三/四种遍历算法

    PS:所有的代码示例使用的都是这个图 2019-10-29 利用p126的算法5.3建立二叉树,并完成三种遍历算法 中序 后序 先序 #include<iostream> #include ...

  9. 《数据结构与算法(C语言版)》严蔚敏 | 第四章课本案例

    //二叉树的顺序存储表示 #define MAXTSIZE 100 typedef TElemtype SqBiTree[MAXTSIZE]; SqBiTree bt; //二叉树的二叉链表存储表示 ...

随机推荐

  1. Jenkins + git + maven 安装

    1.jenkins安装 sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo ...

  2. mysql产生随机数

     mysql产生随机数小结一下,可以为mysql的表生成大量的随机数: 1) 产生0到10000间的随机数    SELECT RAND() * 10000; 对应产生相应的整数    SELECT ...

  3. python2学习------基础语法2(函数)

    1.函数 # 无参数函数 def loopTest2(): a=1; while a<40: print a; a=a+1; if a==35: continue; else: print 'o ...

  4. 将OB86的故障信息保存在DB86中去

    出现DP站故障的时候,CPU会自动调用OB86 ,OB86 的20B 局部变量里面有丰富的故障信息,生成数据块DB86 在DB86 中生成5个双字元素的数组ARAY 在OB86中调用 "BL ...

  5. mysql 安装完以后没有mysql服务

    用管理员身份打开命令控制台(cmd),然后将mysql的安装文件的路径打开(bin文件的路径),然后再路径下打上mysqld.exe -install, 会出现提示  Service successf ...

  6. redis cluster 添加/删除节点操作

    RedisCluster 添加/删除节点 添加节点新配置两个测试节点8008和9009 [root@--- ~]# /usr/local/redis-/bin/redis-server /u02/re ...

  7. Console-terminal-tty-shell-kernel

    Console-terminal-tty-shell-kernel 1. 先看图表     1.1 简表     1.2 shell与内核的示意图     1.3 Console-terminal-t ...

  8. mysql导入导出无权限

    error:The MySQL server is running with the --secure-file-priv option so it cannot execute this state ...

  9. Day6 - I - Sticks Problem POJ - 2452

    Xuanxuan has n sticks of different length. One day, she puts all her sticks in a line, represented b ...

  10. JSONPath 表达式的使用

    一.JSONPath使用需要的包 <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactI ...