当前位置:   article > 正文

揭秘 2024 春晚刘谦魔术——代码还原_刘谦魔术编程

刘谦魔术编程

其他系列文章导航

Java基础合集
数据结构与算法合集

设计模式合集

多线程合集

分布式合集

ES合集


文章目录

其他系列文章导航

文章目录

前言

一、魔术大概流程

二、代码实现各个步骤

2.1 partition(对半撕牌)

2.2 bottom(将 n 张牌置底)

2.3 insert(三张牌随机插入到五张牌中间)

2.4 pop(丢第一张)

2.5 throwOneOrTwo(男生丢一张牌,女生丢两张)

2.6 mysticalWords(七字真言)

2.7 LeaveOneGoOne (置底一张丢一张)

三、整体代码及结果

四、总结


前言

随着 2024 年春晚的落幕,刘谦的魔术表演再次成为了人们热议的焦点。

从 2009 年到 2019 年,刘谦 10 年间 5 次亮相央视春晚舞台,一句“见证奇迹的时刻”成为刘谦的招牌台词。但从 2019 年在春晚表演《魔壶》之后,刘谦好像销声匿迹了,连续 5 年都与春晚无缘。2024 年 2 月 9 日晚,刘谦终于带着最新魔术节目《守岁共此时》再次亮相春晚,神乎其技的表现让观众直呼不可思议。

今天,我将尝试从编程的角度来揭秘刘谦的魔术,通过代码实现来解析其背后的原理。


一、魔术大概流程

观众们按照一定的顺序撕开扑克牌,通过名字字数、男女性别、南方北方等关键词进行排序筛选,最终丢弃了大部分的碎牌。而剩下的两张碎牌,竟然神奇地凑成了一张完整的牌。

大致流程:

  1. 随机选取四张牌。
  2. 对半撕开并叠在一起。
  3. 按照名字的长度把最上面的牌放到底部。
  4. 最上面三张牌随机插入到五张牌中间。
  5. 把最上面一张牌藏屁股下。
  6. 男生扔掉最上面一张牌,女生扔两张。
  7. 喊出七字真言,每喊一个字将一张牌置底。
  8. 然后置底一张丢一张,直到还剩一张。


二、代码实现各个步骤

2.1 partition(对半撕牌)

  1. static int[] partition(int[] arr) {
  2. int[] newArr = new int[arr.length * 2];
  3. System.arraycopy(arr, 0, newArr, 0, arr.length);
  4. System.arraycopy(arr, 0, newArr, 4, arr.length);
  5. return newArr;
  6. }
  • 目的:将输入的数组arr复制到一个新的数组中,并将arr的元素再复制一次到新的数组中的特定位置。
  • 实现:创建一个新数组newArr,其长度是arr的两倍。然后,使用System.arraycopy方法将arr的元素复制到newArr的前半部分和从索引4开始的位置。

 2.2 bottom(将 n 张牌置底)

  1. static int[] bottom(int[] arr, int n) {
  2. int[] newArr = new int[arr.length];
  3. System.arraycopy(arr, n, newArr, 0, arr.length - n);
  4. System.arraycopy(arr, 0, newArr, arr.length - n, n);
  5. return newArr;
  6. }
  • 目的:将arr数组中的前n个元素移动到数组的末尾,并将其余的元素移到数组的开头。
  • 实现:使用System.arraycopy方法实现元素的移动。

2.3 insert(三张牌随机插入到五张牌中间)

  1. static int[] insert(int[] arr) {
  2. int[] newArr = new int[arr.length];
  3. int n = new Random().nextInt(4) + 1;
  4. System.arraycopy(arr, 3, newArr, 0, n);
  5. System.arraycopy(arr, 0, newArr, n, 3);
  6. System.arraycopy(arr, 3 + n, newArr, 3 + n, arr.length - n - 3);
  7. return newArr;
  8. }
  • 目的:将arr数组中的前三个元素随机插入到数组的中间位置。
  • 实现:首先,生成一个1到4之间的随机数n。然后,使用System.arraycopy方法将前三个元素插入到新数组的随机位置,并将其余的元素放在正确的位置。

 2.4 pop(丢第一张)

  1. static int[] pop(int[] arr) {
  2. int[] newArr = new int[arr.length - 1];
  3. System.arraycopy(arr, 1, newArr, 0, arr.length - 1);
  4. return newArr;
  5. }
  • 目的:移除arr数组的第一个元素,并返回剩余的元素。
  • 实现:创建一个新的数组newArr,其长度比arr少1。然后,使用System.arraycopy方法将arr从索引1开始的所有元素复制到newArr

2.5 throwOneOrTwo(男生丢一张牌,女生丢两张)

  1. static int[] throwOneOrTwo(int[] arr, String gender) {
  2. if (gender.equals("女")) {
  3. int[] newArr = new int[arr.length - 2];
  4. System.arraycopy(arr, 2, newArr, 0, arr.length - 2);
  5. return newArr;
  6. } else {
  7. return pop(arr);
  8. }
  9. }
  • 目的:根据提供的性别(男或女)移除数组中的元素。如果是女性,则移除前两个元素;如果是男性,则移除第一个元素。
  • 实现:根据性别,调用pop方法或创建一个新的数组并复制从索引2开始的所有元素。

2.6 mysticalWords(七字真言)

  1. static int[] mysticalWords(int[] arr) {
  2. if (arr.length == 5) {
  3. return bottom(arr, 2);
  4. } else {
  5. return bottom(arr, 1);
  6. }
  7. }
  • 目的:根据数组的长度,将数组中的元素移动到特定的位置。如果数组长度为5,则移动最后两个元素到数组的底部;否则,移动最后一个元素到数组的底部。
  • 实现:根据数组的长度,调用bottom方法并传递相应的参数。

2.7 LeaveOneGoOne (置底一张丢一张)

  1. static int[] LeaveOneGoOne(int[] arr) {
  2. while (arr.length > 1) {
  3. int[] bottom = bottom(arr, 1);
  4. arr = pop(bottom);
  5. }
  6. return arr;
  7. }
  • 目的:不断从数组中移除元素,直到数组中只剩下一个元素。
  • 实现:使用while循环和前面定义的bottompop方法,每次循环都将数组的最后一个元素移动到数组的底部,并从数组中移除它。

三、整体代码及结果

代码:

  1. public class Magic {
  2. public static void main(String[] args) {
  3. int[] arr = {1, 2, 3, 4};
  4. System.out.println("选取四张牌:"+ Arrays.toString(arr));
  5. int[] partition = partition(arr);
  6. System.out.println("对半撕开并叠在一起:"+ Arrays.toString(partition));
  7. int[] bottom = bottom(partition, 3);
  8. System.out.println("按照名字的长度把最上面的牌放到底部:"+ Arrays.toString(bottom));
  9. int[] insert = insert(bottom);
  10. System.out.println("最上面三张牌随机插入到五张牌中间:"+ Arrays.toString(insert));
  11. System.out.println("现在最上面的一张牌是:"+ insert[0]);
  12. int[] pop = pop(insert);
  13. System.out.println("把最上面一张牌藏屁股下,还剩:"+ Arrays.toString(pop));
  14. int[] throwOneOrTwo = throwOneOrTwo(pop, "女");
  15. System.out.println("男生扔掉最上面一张牌,女生扔两张:"+ Arrays.toString(throwOneOrTwo));
  16. int[] mysticalWords = mysticalWords(throwOneOrTwo);
  17. System.out.println("喊出七字真言,每喊一个字将一张牌置底"+ Arrays.toString(mysticalWords));
  18. int[] leaveOneGoOne = LeaveOneGoOne(mysticalWords);
  19. System.out.println("然后开始留下一张置底丢一张,直到还剩一张:"+ leaveOneGoOne[0]);
  20. }
  21. static int[] partition(int[] arr) {
  22. int[] newArr = new int[arr.length * 2];
  23. System.arraycopy(arr, 0, newArr, 0, arr.length);
  24. System.arraycopy(arr, 0, newArr, 4, arr.length);
  25. return newArr;
  26. }
  27. //下放 n 个
  28. static int[] bottom(int[] arr, int n) {
  29. int[] newArr = new int[arr.length];
  30. System.arraycopy(arr, n, newArr, 0, arr.length - n);
  31. System.arraycopy(arr, 0, newArr, arr.length - n, n);
  32. return newArr;
  33. }
  34. //最上面三个随机插入到五个中间
  35. static int[] insert(int[] arr) {
  36. int[] newArr = new int[arr.length];
  37. int n = new Random().nextInt(4) + 1;
  38. System.arraycopy(arr, 3, newArr, 0, n);
  39. System.arraycopy(arr, 0, newArr, n, 3);
  40. System.arraycopy(arr, 3 + n, newArr, 3 + n, arr.length - n - 3);
  41. return newArr;
  42. }
  43. //第一个去掉,藏屁股底下
  44. static int[] pop(int[] arr) {
  45. int[] newArr = new int[arr.length - 1];
  46. System.arraycopy(arr, 1, newArr, 0, arr.length - 1);
  47. return newArr;
  48. }
  49. //男生扔1,女生扔2
  50. static int[] throwOneOrTwo(int[] arr, String gender) {
  51. if (gender.equals("女")) {
  52. int[] newArr = new int[arr.length - 2];
  53. System.arraycopy(arr, 2, newArr, 0, arr.length - 2);
  54. return newArr;
  55. } else {
  56. return pop(arr);
  57. }
  58. }
  59. //七字真言
  60. static int[] mysticalWords(int[] arr) {
  61. if (arr.length == 5) {
  62. return bottom(arr, 2);
  63. } else {
  64. return bottom(arr, 1);
  65. }
  66. }
  67. //留下一个走一个
  68. static int[] LeaveOneGoOne(int[] arr) {
  69. while (arr.length > 1) {
  70. int[] bottom = bottom(arr, 1);
  71. arr = pop(bottom);
  72. }
  73. return arr;
  74. }
  75. }

结果: 


四、总结

刘谦老师的魔术本质其实就是约瑟夫环的问题。

我认为这是语言类节目第一名。

充满了真情实感的欢声笑语。大家的参与性很高,过大年,追求的不过是热热闹闹,开开心心,这个节目做到了。


本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号